Node Degree FrameΒΆ
Example
>>> from techminer2.co_occurrence_network.index_keywords import NodeDegreeDataFrame
>>> df = (
... 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("examples/fintech/")
... .where_database("main")
... .where_record_years_range(None, None)
... .where_record_citations_range(None, None)
... .where_records_match(None)
... #
... .run()
... ).head()
>>> df
Node Name Degree
0 0 FINANCE 10:1866 17
1 1 FINTECH 10:1412 16
2 2 FINANCIAL_SERVICE 05:1115 11
3 3 CYBER_SECURITY 02:0342 9
4 4 COMMERCE 03:0846 7