Concept Grid Plot

## >>> from techminer2.packages.networks.co_occurrence.index_keywords import ConceptGridPlot ## >>> plot = ( ## … ConceptGridPlot() ## … # ## … # FIELD: ## … .having_terms_in_top(30) ## … .having_terms_ordered_by(“OCC”) ## … .having_term_occurrences_between(None, None) ## … .having_term_citations_between(None, None) ## … .having_terms_in(None) ## … # ## … # COUNTERS: ## … .using_term_counters(True) ## … # ## … # NETWORK: ## … .using_clustering_algorithm_or_dict(“louvain”) ## … .using_association_index(“association”) ## … # ## … # DATABASE: ## … .where_root_directory_is(“example/”) ## … .where_database_is(“main”) ## … .where_record_years_range_is(None, None) ## … .where_record_citations_range_is(None, None) ## … .where_records_match(None) ## … # ## … .run() ## … ) ## >>> # plot.render(“sphinx/images/co_occurrence_network/concept_grid_plot”, format=”png”)

# .. image:: /images/co_occurrence_network/concept_grid_plot.png # :width: 900px # :align: center