Node Degree PlotΒΆ

>>> from techminer2.packages.networks.citation.organizations  import NodeDegreePlot
>>> plot = (
...     NodeDegreePlot()
...     #
...     # UNIT OF ANALYSIS:
...     .having_terms_in_top(30)
...     .having_citation_threshold(0)
...     .having_occurrence_threshold(2)
...     .having_terms_in(None)
...     #
...     # PLOT:
...     .using_textfont_size(10)
...     .using_marker_size(7)
...     .using_line_color("black")
...     .using_line_width(1.5)
...     .using_yshift(4)
...     #
...     # 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()
... )
>>> # plot.write_html("docs_src/_generated/packages/networks/citation/organizations/network_degree_plot.html")