>>> from techminer2.co_citation_network import network_plot
>>> plot = network_plot(
... unit_of_analysis="cited_sources", # "cited_sources",
... # "cited_references",
... # "cited_authors"
... #
... # COLUMN PARAMS:
... top_n=30,
... citations_threshold=None,
... custom_terms=None,
... #
... # NETWORK CLUSTERING:
... algorithm_or_dict="louvain",
... #
... # LAYOUT:
... nx_k=None,
... nx_iterations=30,
... nx_random_state=0,
... #
... # NODES:
... node_size_range=(9, 20),
... textfont_size_range=(8, 12),
... textfont_opacity_range=(0.35, 1.00),
... #
... # EDGES:
... edge_color="#7793a5",
... edge_width_range=(0.8, 3.0),
... #
... # AXES:
... xaxes_range=None,
... yaxes_range=None,
... show_axes=False,
... #
... # DATABASE PARAMS:
... root_dir="example/",
... database="main",
... year_filter=(None, None),
... cited_by_filter=(None, None),
... )
>>> # plot.write_html("sphinx/_static/co_citation_network/network_plot.html")