numo-gnuplot
numo-gnuplot copied to clipboard
Gnuplot wrapper for Ruby/Numo
The gem on rubygems is outdated. Please update it.
Thanks for maintaining great gem.👍 Unfortunately on my new mac m1(BigSur), numo-gnuplot doesn' t work. The error tells, ``` Traceback (most recent call last): 3: from test.rb:5:in `' 2: from...
.gem/ruby/2.7.0/gems/numo-gnuplot-0.2.4/lib/numo/gnuplot.rb:307:in `run': (Numo::GnuplotError) line 0: Gridding of the color column is not implemented 2d example ---- how produce 2d image from array[][] x = 3 y = 4 tab =...
With this code ```ruby Numo.gnuplot do debug_on set :title, 'Letzte Stunde' set :term, 'pngcairo' # size 1024,576' # 16:9 set :output, 'hourly.png' set :xdata, 'time' set :timefmt, TFMT pp [x[0],...
I want to write a dashed vertical line on the plot, then ``` ruby Numo.gnuplot do set arrow: "from 10.0 ,0.0 to 10.0,140.0 nohead dashtype (10, 5)", lc_rgb:"red" plot xx,...