Plot 朱莉娅的轨迹图

Plot 朱莉娅的轨迹图,plot,julia,Plot,Julia,但我想画出所有点的轨迹,这样我就能得到这样的图 使用x和y值绘制路径曲线 绘图(几何线(保留顺序=true)、几何点、x=bb[:,1],y=bb[:,2]) 或 绘图(Geom.path,x=bb[:,1],y=bb[:,2]) 我明白了 好的,这就是我想要的答案。或者,这是Geom.line(preserve\u order=true)的别名。。 using Gadfly; bb=randn(20,2) plot(x=bb[:,1],y=bb[:,2],Geom.line)

但我想画出所有点的轨迹,这样我就能得到这样的图

使用x和y值绘制路径曲线

绘图(几何线(保留顺序=true)、几何点、x=bb[:,1],y=bb[:,2])

绘图(Geom.path,x=bb[:,1],y=bb[:,2])

我明白了

好的,这就是我想要的答案。或者,这是
Geom.line(preserve\u order=true)的别名。
using Gadfly;
bb=randn(20,2)
plot(x=bb[:,1],y=bb[:,2],Geom.line)