Create simple graph object in Julia using Graphs.jl
问题 I am starting to study graph theory (I plan to use it in machine learning and/or bayesian inference). I want to code in Julia, and found the package Graphs. But how can I use this package to create simple graphs? For example, this one: It would be very useful if I undertood how to create an Julia object that represents this graph using Graphs . Its documentation lacks examples so I can't get started. 回答1: Julia's Graphs package has simple_graph interface for creating such small graphs. To