gnuplotrb icon indicating copy to clipboard operation
gnuplotrb copied to clipboard

Google Summer of Code 2015 project

Results 8 gnuplotrb issues
Sort by recently updated
recently updated
newest added

Running any examples from the [basic usage](https://nbviewer.org/github/sciruby/gnuplotrb/blob/master/notebooks/basic_usage.ipynb]) notebook locally result in the following error: `ArgumentError: wrong number of arguments (given 2, expected 1) from /.gem/ruby/3.0.0/gems/gnuplotrb-0.4.0/lib/gnuplotrb/staff/dataset.rb:65:in 'initialize'` The only example that...

bug

``` ruby require 'gnuplotrb' puts GnuplotRB::Plot.new('XXX').to_svg() ``` It may work like this: ``` create error handler thread (but not running) check_errors => ok check_errors => ok . . . check_errors...

I have simplified an example as far as I could : ```ruby require 'gnuplotrb' include GnuplotRB #x = ["2013-05-22 02:49:49", "2013-05-22 02:56:49", "2013-05-22 02:56:59"] x = ["2012-05-22", "2013-05-21", "2013-05-22"] y...

I got some issues when trying to generate a histogram. I had no problems with points and lines, just with histograms. Below is a minimal example that recreates the behavior...

When the `gnuplot` program generates an error that isn't output instantly, `GnuplotRB::Plot#plot` loops forever and never displays the error message. This can come up in a number of ways and...

Once I worked around #14, I discovered many problems. One of them was that my plot options were not being used in the correct order. Since options are specified with...

I'm trying to draw scatter plot of the following dataframe but it misses some points. ``` ruby df = Daru::DataFrame.new({ x: [3, 3, 3], y: [1, 2, 3] }, index:...

Daru's is being heavily updated and future releases could break compatibility with gnuplotrb. To catch these before they go public I think we should have a test harness that tests...