使用Plots.jl显示多个图

时间:2017-06-07 15:09:56

标签: julia plots.jl

我目前有两个向量,x和y,我在

中单独绘制
gui()

我还尝试了gui(plt1)display(plt1)函数,但这些函数与display()函数具有相似的效果。还要注意我在一个文件中运行它(因此需要plt2函数)。我也在REPL中尝试过类似的代码,它有同样的问题,只显示我调用的最后一个图。

我的问题是如何同时显示两个不同的数字?我当前的实现有plt1覆盖figure(),因此我无法同时看到它们。请注意,我不是在寻找一个子图,而是两个不同的数字。是否存在类似于Matplotlib的.rule{ height: 8%; width: 50%; background-color: #aaa; text-align: center; margin-bottom: 5%; } .event { height: 8%; width: 50%; background-color: #aaa; text-align: center; margin-bottom: 5%; } 函数,它允许声明单独的数字?

1 个答案:

答案 0 :(得分:3)

是的,请使用短语plt2 = plot(y, reuse = false)