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.
