Module: GnuplotRB::Plottable
- Includes:
- OptionHandling
- Defined in:
- lib/gnuplotrb/mixins/plottable.rb
Overview
This module contains methods that should be mixed into plottable classes. It includes OptionHandling and implements several plotting methods.
Constant Summary
Constants included from OptionHandling
OptionHandling::QUOTED_OPTIONS
Instance Method Summary collapse
-
#method_missing(meth_id, *args) ⇒ Object
Overview In this gem #method_missing is used both to handle options and to handle plotting to specific terminal.
-
#own_terminal ⇒ Object
Returns terminal object linked with this Plottable object.
-
#plot(*_) ⇒ Object
You should implement #plot in classes that are Plottable.
-
#respond_to?(meth_id) ⇒ Boolean
Returns true foe existing methods and #to_<term_name> when name is a valid terminal type.
-
#to_iruby ⇒ Object
This method is used to embed plottable objects into iRuby notebooks.
-
#to_specific_term(terminal, path = nil, **options) ⇒ Object
:call-seq: to_png(‘file.png’) -> creates file with plot to_svg -> svg file contents to_canvas(‘plot.html’, size: [300,300]) -> creates file with plot.
Methods included from OptionHandling
#initialize, #new_with_options, option_to_string, #options, ruby_class_to_gnuplot, string_key, valid_terminal?, validate_terminal_options
Dynamic Method Handling
This class handles dynamic methods through the method_missing method
#method_missing(meth_id, *args) ⇒ Object
Overview
In this gem #method_missing is used both to handle options and to handle plotting to specific terminal.
Options handling
Overview
You may set options using #option_name(option_value) method. A new object will be constructed with selected option set. And finally you can get current value of any option using #options_name without arguments.
Arguments
-
option_value - value to set an option. If none given method will just return current option’s value
Examples
plot = Splot.new
new_plot = plot.title('Awesome plot')
plot.title #=> nil
new_plot.title #=> 'Awesome plot'
Plotting to specific term
Overview
Gnuplot offers possibility to output graphics to many image formats. The easiest way to to so is to use #to_<plot_name> methods.
Arguments
-
options - set of options related to terminal (size, font etc). Be careful, some terminals have their own specific options.
Examples
# font options specific for png term
multiplot.to_png('./result.png', size: [300, 500], font: ['arial', 12])
# font options specific for svg term
content = multiplot.to_svg(size: [100, 100], fname: 'Arial', fsize: 12)
47 48 49 50 51 52 53 54 55 56 |
# File 'lib/gnuplotrb/mixins/plottable.rb', line 47 def method_missing(meth_id, *args) meth = meth_id.id2name if meth[0..2] == 'to_' term = meth[3..-1] super unless OptionHandling.valid_terminal?(term) to_specific_term(term, *args) else option(meth_id, *args) end end |
Instance Method Details
#own_terminal ⇒ Object
Returns terminal object linked with this Plottable object.
121 122 123 |
# File 'lib/gnuplotrb/mixins/plottable.rb', line 121 def own_terminal @terminal ||= Terminal.new end |
#plot(*_) ⇒ Object
You should implement #plot in classes that are Plottable
11 12 13 |
# File 'lib/gnuplotrb/mixins/plottable.rb', line 11 def plot(*_) fail NotImplementedError, 'You should implement #plot in classes that are Plottable!' end |
#respond_to?(meth_id) ⇒ Boolean
Returns true foe existing methods and #to_<term_name> when name is a valid terminal type.
61 62 63 64 65 66 67 68 |
# File 'lib/gnuplotrb/mixins/plottable.rb', line 61 def respond_to?(meth_id) # Next line is here to force iRuby use #to_iruby # instead of #to_svg. return super if defined? IRuby meth = meth_id.id2name term = meth[0..2] == 'to_' && OptionHandling.valid_terminal?(meth[3..-1]) term || super end |
#to_iruby ⇒ Object
This method is used to embed plottable objects into iRuby notebooks. There is a notebook with examples of its usage.
75 76 77 78 79 80 81 82 83 84 85 86 |
# File 'lib/gnuplotrb/mixins/plottable.rb', line 75 def to_iruby available_terminals = { 'png' => 'image/png', 'pngcairo' => 'image/png', 'jpeg' => 'image/jpeg', 'svg' => 'image/svg+xml', 'dumb' => 'text/plain' } terminal, = term.is_a?(Array) ? [term[0], term[1]] : [term, {}] terminal = 'svg' unless available_terminals.keys.include?(terminal) [available_terminals[terminal], send("to_#{terminal}".to_sym, **)] end |
#to_specific_term(terminal, path = nil, **options) ⇒ Object
:call-seq: to_png(‘file.png’) -> creates file with plot to_svg -> svg file contents to_canvas(‘plot.html’, size: [300,300]) -> creates file with plot
Overview
Method which outputs plot to specific terminal (possibly some file). Explicit use should be avoided. This method is called from #method_missing when it handles method names like #to_png(options).
Arguments
-
path - path to output file, if none given it will output to temp file and then read it and return binary contents of file
-
options - used in #plot
Examples
## plot here may be Plot, Splot, Multiplot or any other plottable class
plot.to_png('./result.png', size: [300, 500])
contents = plot.to_svg(size: [100, 100])
plot.to_dumb('./result.txt', size: [30, 15])
107 108 109 110 111 112 113 114 115 116 117 |
# File 'lib/gnuplotrb/mixins/plottable.rb', line 107 def to_specific_term(terminal, path = nil, **) if path result = plot(term: [terminal, ], output: path) else path = Dir::Tmpname.make_tmpname(terminal, 0) plot(term: [terminal, ], output: path) result = File.binread(path) File.delete(path) end result end |