Juno and interactive plot

Could you pls try the following code - just to ensure, that GR is working fine:

using GR
inline("atom")
for n in 1:100
  sleep(0.02)
  histogram(randn(10000))
end

BTW: The sleep command is not necessary - but we have to slow down the animation (GR is fast) :slight_smile:

1 Like