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**  Code must be: ``print("Arcs: " + str(gbn.arcs()))`` Instead of the highlighted code