Degree Plot

>>> from techminer2.science_mapping.co_citation.cited_references import degree_plot
>>> plot = degree_plot(
...     #
...     # COLUMN PARAMS:
...     top_n=30,
...     citations_threshold=None,
...     custom_items=None,
...     #
...     # NETWORK PARAMS:
...     algorithm_or_dict="louvain",
...     #
...     # 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.fig_.write_html("sphinx/_static/analyze/co_citation/cited_references/degree_plot.html")
>>> plot.df_.head()
   Node                                            Name  Degree
0     0                    Lin M., 2013, MANAGE SCI 1:7      15
1     1               Burtch G., 2013, INF SYST RES 1:4      15
2     2    Dahlberg T., 2008, ELECT COMMER RES APPL 1:3      14
3     3  Burtch G., 2014, MIS QUART MANAGE INF SYST 1:4      12
4     4            Duarte J., 2012, REV FINANC STUD 1:6      11
>>> print(plot.prompt_) 
Your task is ...