Node Degree FrameΒΆ

>>> from techminer2.packages.networks.co_authorship.organizations import NodeDegreeDataFrame
>>> (
...     NodeDegreeDataFrame()
...     #
...     # FIELD:
...     .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_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()
... ).head()
   Node                                     Name  Degree
0     0       Goethe Univ Frankfurt (DEU) 2:1065       3
1     1     Pennsylvania State Univ (USA) 1:0576       3
2     2  Singapore Manag Univ (SMU) (SGP) 1:0576       3
3     3            Univ of Delaware (USA) 1:0576       3
4     4    Columbia Grad Sch of Bus (USA) 1:0390       3