Co-occurrences Chart

## >>> from techminer2.tools.associations import co_occurrences_chart ## >>> plot = co_occurrences_chart( ## … # ## … # FUNCTION PARAMS: ## … item=’FINTECH’, ## … #

## … # ## … # COLUMNS: ## … .with_field(“author_keywords”) ## … .having_terms_in_top(10) ## … .having_terms_ordered_by(“OCC”) ## … .having_term_occurrences_between(2, None) ## … .having_term_citations_between(None, None) ## … .having_terms_in(None) ## … # ## … # ROWS: ## … .with_other_field(“None”) ## … .having_other_terms_in_top(10) ## … .having_other_terms_ordered_by(“OCC”) ## … .having_other_term_occurrences_between(2, None) ## … .having_other_term_citations_between(None, None) ## … .having_other_terms_in(None) ## … # ## … # DATABASE: ## … .where_root_directory_is(“example/”) ## … .where_database_is(“main”) ## … .where_record_years_range_is(None, None) ## … .where_record_citations_range_is(None, None) ## … # ## … .run() ## … ) ## >>> # plot.write_html(“docs_src/_static/tools/associations/co_occurrences.html”)