@@ -559,6 +559,7 @@ def _generate_plot_content(self, plot) -> List[str]:
559559
560560 # Define plot path
561561 if self .is_report_static :
562+ # ? should that be in the output folder
562563 static_plot_path = (
563564 Path (self .static_dir ) / f"{ plot .title .replace (' ' , '_' )} .png"
564565 ).absolute ()
@@ -592,7 +593,7 @@ def _generate_plot_content(self, plot) -> List[str]:
592593 else :
593594 plot_content .append ("""fig_altair\n ```\n """ )
594595 elif plot .plot_type == r .PlotType .INTERACTIVE_NETWORK :
595- networkx_graph = plot .read_network ()
596+ networkx_graph = plot .read_network () # ? what does this do?
596597 if isinstance (networkx_graph , tuple ):
597598 # If network_data is a tuple, separate the network and html file path
598599 networkx_graph , html_plot_file = networkx_graph
@@ -602,7 +603,7 @@ def _generate_plot_content(self, plot) -> List[str]:
602603 networkx_graph , html_plot_file
603604 )
604605
605- # Add number of nodes and edges to the plor conetnt
606+ # Add number of nodes and edges to the plot content
606607 num_nodes = networkx_graph .number_of_nodes ()
607608 num_edges = networkx_graph .number_of_edges ()
608609 plot_content .append (f"**Number of nodes:** { num_nodes } \n " )
0 commit comments