I just installed Julia-Studio 0.4.4 on windows 7. And added the package Winston to try out plotting. So I did as below and got "FramedPlot(...)" output, no graphical figure.
using Winston
x=randn(1,1000);
plot(x)
FramedPlot(...)
What should I do to make it work? Any additional library?
I ran into this same problem. Looks like it was answered in the comments, but for future readers, you need to call display()
:
using Winston
display( plot( randn(1,1000) ) )