pw=plot()
oplot(x1, copy(z1), "r")
oplot(x1, copy(z2), "g")
display(pw)
On 2014年11月05日 13:34, [email protected] wrote:
Just getting into plotting data in Julia today. Gravitating towards
Winston because of the similarity of its syntax to that of Matplotlib.
Anyhow, I did have a question about how to do multiple plots (on
separate figures) for Winston.
In Matplotlib, I can use
plt.figure(1)
...
plt.figure(2)
In Winston, I first just tried
plot(x-array,y-array)
plot(x2-array,y2-array)
though then the first plot just got overwritten.
Thanks.