在Julia中制作原木图可以通过使用Plots.jl和GraphRecipes.jl这两个包来实现。下面是一个基本的步骤:
using Pkg
Pkg.add("Plots")
using Plots
using GraphRecipes
SimpleDiGraph()
函数创建一个有向图对象,然后使用add_vertex!()
和add_edge!()
函数添加节点和边。例如:g = SimpleDiGraph()
add_vertex!(g, "A")
add_vertex!(g, "B")
add_vertex!(g, "C")
add_edge!(g, "A", "B")
add_edge!(g, "B", "C")
plot()
函数将有向图对象绘制成原木图。在plot()
函数中,使用tree_layout
参数指定使用原木布局。例如:plot(g, layout = tree_layout)
完整的代码示例:
using Plots
using GraphRecipes
g = SimpleDiGraph()
add_vertex!(g, "A")
add_vertex!(g, "B")
add_vertex!(g, "C")
add_edge!(g, "A", "B")
add_edge!(g, "B", "C")
plot(g, layout = tree_layout)
领取专属 10元无门槛券
手把手带您无忧上云