Node Degree PlotΒΆ
>>> # article:
>>> from techminer2.citation_network import node_degree_plot
>>> plot = node_degree_plot(
... unit_of_analysis="article",
... #
... # COLUMN PARAMS:
... top_n=30,
... citations_threshold=0,
... #
... # DEGREE PLOT:
... textfont_size=10,
... marker_size=7,
... line_color="black",
... line_width=1.5,
... yshift=4,
... #
... # DATABASE PARAMS:
... root_dir="example/",
... database="main",
... year_filter=(None, None),
... cited_by_filter=(None, None),
... )
>>> # plot.write_html("sphinx/_static/citation_network/article_degree_plot.html")
>>> # abbr_source_title, authors, organizations, countries:
>>> from techminer2.citation_network import node_degree_plot
>>> plot = node_degree_plot(
... unit_of_analysis="abbr_source_title",
... #
... # COLUMN PARAMS:
... top_n=30,
... citations_threshold=0,
... occurrence_threshold=2,
... custom_terms=None,
... #
... # DEGREE PLOT:
... textfont_size=10,
... marker_size=7,
... line_color="black",
... line_width=1.5,
... yshift=4,
... #
... # DATABASE PARAMS:
... root_dir="example/",
... database="main",
... year_filter=(None, None),
... cited_by_filter=(None, None),
... )
>>> # plot.write_html("sphinx/_static/citation_network/others_degree_plot.html")