Re: [julia-users] I cant view Plots in Juno - Atom IDE

2016-08-08 Thread Chris Rackauckas
I agree. I probably answer this question at least once a day. I don't find 
it intuitive either, I just know the answer. It should either the early on 
in the documentation, or the displaying should be on by default. It would 
match things like R or MATLAB where people are used to the scripts just 
generating the plots and throwing them in the plot pane (and having the 
option to turn that off would still be nice, and is already implemented).

On Monday, August 8, 2016 at 4:35:29 AM UTC-7, Tom Breloff wrote:
>
> I think this behavior should be changed to match the REPL... There have 
> been too many questions like this
>
> On Monday, August 8, 2016, Chris Rackauckas  > wrote:
>
>> Use the command `gui()`
>>
>> On Sunday, August 7, 2016 at 9:32:29 PM UTC-7, Erick J Zagal wrote:
>>>
>>> I have this code:
>>>
>>> using Plots
>>>
>>> x = linspace(0, 10, 200)
>>> y = sin(x)
>>> plot(x, y, color=:blue, linewidth=2, label="sine")
>>>
>>> when run this in the console , show the plot , but  trying in Juno only 
>>> show [Plots.jl] Initializing backend:plotly
>>> the plot is nothing 
>>> Add a Screenshot
>>>
>>> Help
>>>
>>

Re: [julia-users] I cant view Plots in Juno - Atom IDE

2016-08-08 Thread Tom Breloff
I think this behavior should be changed to match the REPL... There have
been too many questions like this

On Monday, August 8, 2016, Chris Rackauckas  wrote:

> Use the command `gui()`
>
> On Sunday, August 7, 2016 at 9:32:29 PM UTC-7, Erick J Zagal wrote:
>>
>> I have this code:
>>
>> using Plots
>>
>> x = linspace(0, 10, 200)
>> y = sin(x)
>> plot(x, y, color=:blue, linewidth=2, label="sine")
>>
>> when run this in the console , show the plot , but  trying in Juno only
>> show [Plots.jl] Initializing backend:plotly
>> the plot is nothing
>> Add a Screenshot
>>
>> Help
>>
>


[julia-users] I cant view Plots in Juno - Atom IDE

2016-08-07 Thread Erick J Zagal
I have this code:

using Plots

x = linspace(0, 10, 200)
y = sin(x)
plot(x, y, color=:blue, linewidth=2, label="sine")

when run this in the console , show the plot , but  trying in Juno only 
show [Plots.jl] Initializing backend:plotly
the plot is nothing 
Add a Screenshot

Help