Class: Daru::View::Plot
- Inherits:
-
Object
- Object
- Daru::View::Plot
- Defined in:
- lib/daru/view/plot.rb
Instance Attribute Summary collapse
-
#adapter ⇒ Object
Returns the value of attribute adapter.
-
#chart ⇒ Object
readonly
Returns the value of attribute chart.
-
#data ⇒ Object
readonly
Returns the value of attribute data.
-
#options ⇒ Object
readonly
Returns the value of attribute options.
-
#user_options ⇒ Object
readonly
Returns the value of attribute user_options.
Class Method Summary collapse
-
.adapter=(adapter) ⇒ Object
class method.
Instance Method Summary collapse
- #add_series(opts = {}) ⇒ Object
-
#div ⇒ Object
generat html code, to include in body tag.
-
#export(export_type = 'png', file_name = 'chart') ⇒ String, void
Js code of chart along with the code to export it and loads the js code to export it in IRuby.
-
#export_html_file(path = './plot.html') ⇒ Object
generat html file.
-
#init_iruby ⇒ Object
load the corresponding JS files in IRuby notebook.
-
#init_script ⇒ Object
dependent js file, to include in head tag using the plot object.
-
#initialize(data = [], options = {}, user_options = {}, &block) ⇒ Plot
constructor
df = Daru::DataFrame.new(‘B’, ‘C’, ‘D’, ‘E’], b:) Daru::View::Plot.new df, type: :bar, x: :a, y: :b, adapter: :nyaplot.
-
#show_in_iruby ⇒ Object
display in IRuby notebook.
Constructor Details
#initialize(data = [], options = {}, user_options = {}, &block) ⇒ Plot
df = Daru::DataFrame.new(‘B’, ‘C’, ‘D’, ‘E’], b:) Daru::View::Plot.new df, type: :bar, x: :a, y: :b, adapter: :nyaplot
Set the new adapter(plotting library) ,for example highcharts:
Daru::View.plotting_library = :highcharts
To use a particular adapter in certain plot object(s), then user must pass the adapter in ‘options` hash. e.g. `adapter: :highcharts`
37 38 39 40 41 42 43 44 |
# File 'lib/daru/view/plot.rb', line 37 def initialize(data=[], ={}, ={}, &block) # TODO: &block is not used, right now. @data = data @options = @user_options = self.adapter = .delete(:adapter) unless [:adapter].nil? @chart = plot_data(data, , , &block) end |
Instance Attribute Details
#adapter ⇒ Object
Returns the value of attribute adapter.
5 6 7 |
# File 'lib/daru/view/plot.rb', line 5 def adapter @adapter end |
#chart ⇒ Object (readonly)
Returns the value of attribute chart.
4 5 6 |
# File 'lib/daru/view/plot.rb', line 4 def chart @chart end |
#data ⇒ Object (readonly)
Returns the value of attribute data.
4 5 6 |
# File 'lib/daru/view/plot.rb', line 4 def data @data end |
#options ⇒ Object (readonly)
Returns the value of attribute options.
4 5 6 |
# File 'lib/daru/view/plot.rb', line 4 def @options end |
#user_options ⇒ Object (readonly)
Returns the value of attribute user_options.
4 5 6 |
# File 'lib/daru/view/plot.rb', line 4 def @user_options end |
Class Method Details
.adapter=(adapter) ⇒ Object
class method
Daru::View::Plot.adapter = :googlecharts
Plotting libraries are nyaplot, highcharts, googlecharts
15 16 17 18 19 20 21 22 |
# File 'lib/daru/view/plot.rb', line 15 def adapter=(adapter) require "daru/view/adapters/#{adapter}" # rubocop:disable Style/ClassVars @@adapter = Daru::View::Adapter.const_get( "#{adapter.to_s.capitalize}Adapter" ) # rubocop:enable Style/ClassVars end |
Instance Method Details
#add_series(opts = {}) ⇒ Object
101 102 103 104 105 106 107 108 |
# File 'lib/daru/view/plot.rb', line 101 def add_series(opts={}) case adapter when Daru::View::Adapter::HighchartsAdapter @chart = @adapter.add_series(@chart, opts) else raise("Method `add-series` is not valid for #{@adapter}.to_s.capitalize library.") end end |
#div ⇒ Object
generat html code, to include in body tag
73 74 75 |
# File 'lib/daru/view/plot.rb', line 73 def div @adapter.generate_body(@chart) end |
#export(export_type = 'png', file_name = 'chart') ⇒ String, void
Returns js code of chart along with the code to export it and loads the js code to export it in IRuby.
90 91 92 |
# File 'lib/daru/view/plot.rb', line 90 def export(export_type='png', file_name='chart') @adapter.export(@chart, export_type, file_name) end |
#export_html_file(path = './plot.html') ⇒ Object
generat html file
78 79 80 |
# File 'lib/daru/view/plot.rb', line 78 def export_html_file(path='./plot.html') @adapter.export_html_file(@chart, path) end |
#init_iruby ⇒ Object
load the corresponding JS files in IRuby notebook. This is done automatically when plotting library is set using Daru::View.plotting_library = :new_library
97 98 99 |
# File 'lib/daru/view/plot.rb', line 97 def init_iruby @adapter.init_iruby end |
#init_script ⇒ Object
dependent js file, to include in head tag using the plot object. @example: plot_obj.init_script
Note : User can directly put the dependent script file into the head tag using ‘Daru::View.dependent_script(:highcharts), by default it loads Nyaplot JS files.
68 69 70 |
# File 'lib/daru/view/plot.rb', line 68 def init_script @adapter.init_script end |
#show_in_iruby ⇒ Object
display in IRuby notebook
55 56 57 |
# File 'lib/daru/view/plot.rb', line 55 def show_in_iruby @adapter.show_in_iruby @chart end |