What you can do is this: In the file-system panel go to a directory of your liking to store plot files. Also set it as current with the right-click context menu.
pl = plot(x,sin(x)) file( pl, "myplot.png") Now you can just open that image file by double clicking it in the file-system panel, and it will be visible in an editor window. On Tuesday, January 14, 2014 9:28:30 AM UTC-8, Kjetil brinchmann Halvorsen wrote: > > I have todays julia from git, likewise for Julia Studio. > Is there some way to get plotting in JuliaStudio? (I did get it to > work with IJulia) > > I am doing: > > using Winston > > julia> x = -3:(pi/60):5 > > -3.0:0.05235987755982988:4.958701389094142 > > > julia> plot(x, sin(x)) > > FramedPlot(...) > > > julia> show() > > no method show() > > but I do not see any plot. > > Is it possible? > > Kjetil >
