Module: Daru::Plotting::Vector
- Included in:
- Vector
- Defined in:
- lib/daru/plotting/vector.rb
Instance Method Summary collapse
-
#plot(opts = {}) {|plot, diagram| ... } ⇒ Object
Plots a Vector with Nyaplot on IRuby using the given options.
Instance Method Details
#plot(opts = {}) {|plot, diagram| ... } ⇒ Object
Plots a Vector with Nyaplot on IRuby using the given options. Yields the plot object (Nyaplot::Plot) and the diagram object (Nyaplot::Diagram) to the block, which can be used for setting various options as per the Nyaplot API.
Options
type (:scatter, :bar, :histogram), title, x_label, y_label, color(true/false)
Usage
vector = Daru::Vector.new [10,20,30,40], [:one, :two, :three, :four]
vector.plot(type: :bar) do |plot|
plot.title "My first plot"
plot.width 1200
end
19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 |
# File 'lib/daru/plotting/vector.rb', line 19 def plot opts={}, &block = { type: :scatter }.merge(opts) x_axis = [:type] == :scatter ? Array.new(@size) { |i| i } : @index.to_a plot = Nyaplot::Plot.new diagram = if [:box, :histogram].include? [:type] plot.add([:type], @data.to_a) else plot.add([:type], x_axis, @data.to_a) end yield plot, diagram if block_given? plot.show end |