Network MetricsΒΆ

>>> from techminer2.packages.networks.co_citation.cited_authors import NetworkMetrics
>>> (
...     NetworkMetrics()
...     #
...     # UNIT OF ANALYSIS:
...     .having_terms_in_top(30)
...     .having_citation_threshold(0)
...     .having_terms_in(None)
...     #
...     # COUNTERS:
...     .using_term_counters(True)
...     #
...     # 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(15)
                        Degree  Betweenness  Closeness  PageRank
Leong C. 1:2                 9     0.217949   0.715976  0.121107
Zavolokina L. 1:3            8     0.192308   0.664835  0.111071
Gabor D. 1:2                 6     0.000000   0.547511  0.078353
Ryu H.-S. 1:2                6     0.000000   0.547511  0.078353
Alt R. 1:1                   6     0.000000   0.547511  0.078353
Gai K. 1:1                   6     0.000000   0.547511  0.078353
Stewart H. 1:1               6     0.000000   0.547511  0.078353
Gomber P. 1:7                5     0.153846   0.547511  0.084011
Lee I. 1:2                   3     0.000000   0.465385  0.050839
Chen L./1 1:1                3     0.000000   0.465385  0.050839
Jagtiani J. 1:2              1     0.000000   0.076923  0.071429
Anagnostopoulos I. 1:1       1     0.000000   0.076923  0.071429
Gozman D. 1:1                1     0.000000   0.344729  0.024996
Li Y./1 1:1                  1     0.000000   0.387821  0.022516
>>> from techminer2.packages.networks.co_citation.cited_authors import NetworkMetrics
>>> (
...     NetworkMetrics()
...     #
...     # UNIT OF ANALYSIS:
...     .having_terms_in_top(30)
...     .having_citation_threshold(0)
...     .having_terms_in(None)
...     #
...     # COUNTERS:
...     .using_term_counters(False)
...     #
...     # 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(15)
                    Degree  Betweenness  Closeness  PageRank
Leong C.                 9     0.217949   0.715976  0.121107
Zavolokina L.            8     0.192308   0.664835  0.111071
Gabor D.                 6     0.000000   0.547511  0.078353
Ryu H.-S.                6     0.000000   0.547511  0.078353
Alt R.                   6     0.000000   0.547511  0.078353
Gai K.                   6     0.000000   0.547511  0.078353
Stewart H.               6     0.000000   0.547511  0.078353
Gomber P.                5     0.153846   0.547511  0.084011
Lee I.                   3     0.000000   0.465385  0.050839
Chen L./1                3     0.000000   0.465385  0.050839
Jagtiani J.              1     0.000000   0.076923  0.071429
Anagnostopoulos I.       1     0.000000   0.076923  0.071429
Gozman D.                1     0.000000   0.344729  0.024996
Li Y./1                  1     0.000000   0.387821  0.022516