LuisOB33

Results 2 issues of LuisOB33

For those interested in visualizing Graph or GaussianNetwork objects, I have developed this code: ``` !pip install networkx import networkx as nx def visualizeGraph(bnGraph): G = nx.DiGraph() G.add_edges_from(bnGraph.arcs(), weight=1) return...

**Issue: Printing nodes again when arcs should be shown** ![image](https://user-images.githubusercontent.com/113698353/218064482-bdca8629-35f6-49cc-ad62-bd58d73cd8c7.png) Code must be: ``print("Arcs: " + str(gbn.arcs()))`` Instead of the highlighted code