Terms by Cluster FrameΒΆ
>>> from techminer2.packages.networks.coupling.organizations import TermsByClusterDataFrame
>>> (
... TermsByClusterDataFrame()
... #
... # UNIT OF ANALYSIS:
... .having_terms_in_top(20)
... .having_citation_threshold(0)
... .having_occurrence_threshold(2)
... .having_terms_in(None)
... #
... # CLUSTERING:
... .using_clustering_algorithm_or_dict("louvain")
... #
... # 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()
... ).head()
0 ... 2
0 Goethe Univ Frankfurt (DEU) 2:1065 ... Max Planck Inst for Innovation and Competition...
1 Univ of Sydney (AUS) 2:0300 ... Sungkyunkwan Univ (KOR) 2:0307
2 Pennsylvania State Univ (USA) 1:0576 ...
3 Singapore Manag Univ (SMU) (SGP) 1:0576 ...
4 Univ of Delaware (USA) 1:0576 ...
[5 rows x 3 columns]