Terms by Cluster SummaryΒΆ
>>> from techminer2.packages.networks.co_occurrence.user import TermsByClusterSummary
>>> (
... TermsByClusterSummary()
... #
... # FIELD:
... .with_field("raw_keywords")
... .having_terms_in_top(20)
... .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(False)
... #
... # 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()
... )
Cluster ... Terms
0 0 ... FINTECH; INNOVATION; FINANCIAL_SERVICES; FINAN...
1 1 ... FINANCE; FINANCIAL_SERVICE; BUSINESS_MODELS; B...
2 2 ... FINANCIAL_TECHNOLOGY; CROWDFUNDING; SUSTAINABI...
[3 rows x 4 columns]
>>> from techminer2.packages.networks.co_occurrence.user import TermsByClusterSummary
>>> (
... TermsByClusterSummary()
... #
... # FIELD:
... .with_field("raw_keywords")
... .having_terms_in_top(20)
... .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()
... )
Cluster ... Terms
0 0 ... FINTECH 32:5393; INNOVATION 08:0990; FINANCIAL...
1 1 ... FINANCE 11:1950; FINANCIAL_SERVICE 04:1036; BU...
2 2 ... FINANCIAL_TECHNOLOGY 03:0461; CROWDFUNDING 03:...
[3 rows x 4 columns]