nyaplot icon indicating copy to clipboard operation
nyaplot copied to clipboard

interactive plots generator for Ruby

Results 38 nyaplot issues
Sort by recently updated
recently updated
newest added

I ran this notebook: http://nbviewer.jupyter.org/github/domitry/nyaplot/blob/master/examples/notebook/Mapnya.ipynb And the error turns up as this: ``` Javascript error adding output! TypeError: Cannot read property 'pane' of undefined See your browser Javascript console for...

My code: ``` ruby require 'nyaplot' require 'nyaplot3d' x=[];y=[];z=[] -10.step(10, 0.5) do |i| -10.step(10, 0.5) do |j| x.push(i) y.push(j) z.push(Math.sin(Math.sqrt(i*i+j*j))/Math.sqrt(i*i+j*j)) end end z.map!{|val| next (val.nan? ? 0 : val)} #(0,0)...

I host my Jupyter notebook on a server and added HTTPS to it. But Nyaplot tries to load a script from a HTTP url. Is it possible to switch this...

I have a very strange issue with empty plots occuring depending on what other dependencies I load into my iRuby notebook session. If I run this: ``` In [1]: require...

If I run the following example code the box plot is not correct. ``` plot = Nyaplot::Plot.new data = [24, 24, 0, 24, 16, 28, 0, 16, 4, 0, 4,...

I find these plots are really useful getting a feel about spread of various columns in the dataframe at same time. ![plot](http://i.imgur.com/M127uik.png) Along with the above plot it would be...

1. Like a color used in the plot is depicted in the legend, the shape and size are not. 2. `#fill_in`, `#shape_by` and `#size_by` doesn't list the different colors, shapes...

This elagans link: (https://cdn.rawgit.com/domitry/d3-downloadable/master/d3-downloadable","THREE":"https://cdnjs.cloudflare.com/ajax/libs/three.js/r66/three.min) is not being downloaded via the CDN. I think including it with the repo would solve the problem.

I defined four arithmetic operations (+, -, *, /) of `Nyaplot::Series`. These operators work like this: ``` ruby series = Nyaplot::Series.new(:series, [10,20]) another_series = Nyaplot::Series.new(:another_series, [30, 40]) scalar = 10...

Preferably me and @v0dro, so we can update the gem.