Julia-Studio:plot() not working even after adding Winston library

574 Views Asked by At

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?

1

There are 1 best solutions below

1
ntaggart On BEST ANSWER

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) ) )