Class: Daru::View::Table
- Inherits:
-
Object
- Object
- Daru::View::Table
- Defined in:
- lib/daru/view/table.rb
Instance Attribute Summary collapse
-
#adapter ⇒ Object
Returns the value of attribute adapter.
-
#data ⇒ Object
readonly
Returns the value of attribute data.
-
#options ⇒ Object
readonly
Returns the value of attribute options.
-
#table ⇒ Object
readonly
Returns the value of attribute table.
-
#user_options ⇒ Object
readonly
Returns the value of attribute user_options.
Class Method Summary collapse
-
.adapter=(adapter) ⇒ Object
class method.
Instance Method Summary collapse
-
#div ⇒ Object
generate html code, to include in body tag.
-
#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 = {}) ⇒ Table
constructor
TODO: modify the examples df = Daru::DataFrame.new(‘B’, ‘C’, ‘D’, ‘E’], b:) Daru::View::Plot.new df, type: :bar, x: :a, y: :b.
-
#show_in_iruby ⇒ Object
display in IRuby notebook.
Constructor Details
#initialize(data = [], options = {}, user_options = {}) ⇒ Table
TODO: modify the examples df = Daru::DataFrame.new(‘B’, ‘C’, ‘D’, ‘E’], b:) Daru::View::Plot.new df, type: :bar, x: :a, y: :b
Set the new adapter(plotting library) ,for example highcharts:
Daru::View.plotting_library = :highcharts
To use a particular apdater in certain plot object(s), then user must pass the adapter in ‘options` hash. e.g. `adapter: :highcharts`
40 41 42 43 44 45 46 |
# File 'lib/daru/view/table.rb', line 40 def initialize(data=[], ={}, ={}) @data = data @options = @user_options = self.adapter = .delete(:adapter) unless [:adapter].nil? @table = table_data(data, , ) end |
Instance Attribute Details
#adapter ⇒ Object
Returns the value of attribute adapter.
5 6 7 |
# File 'lib/daru/view/table.rb', line 5 def adapter @adapter end |
#data ⇒ Object (readonly)
Returns the value of attribute data.
4 5 6 |
# File 'lib/daru/view/table.rb', line 4 def data @data end |
#options ⇒ Object (readonly)
Returns the value of attribute options.
4 5 6 |
# File 'lib/daru/view/table.rb', line 4 def @options end |
#table ⇒ Object (readonly)
Returns the value of attribute table.
4 5 6 |
# File 'lib/daru/view/table.rb', line 4 def table @table end |
#user_options ⇒ Object (readonly)
Returns the value of attribute user_options.
4 5 6 |
# File 'lib/daru/view/table.rb', line 4 def @user_options end |
Class Method Details
.adapter=(adapter) ⇒ Object
class method
Daru::View::Table.adapter = :new_library
13 14 15 16 17 18 19 20 21 22 23 24 |
# File 'lib/daru/view/table.rb', line 13 def adapter=(adapter) # The library wrapper method for generating table is in the # same folder as the plotting library. Since google chart can be # used for plotting charts as well as table. # 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
#div ⇒ Object
generate html code, to include in body tag
75 76 77 |
# File 'lib/daru/view/table.rb', line 75 def div @adapter.generate_body(@table) end |
#export_html_file(path = './plot.html') ⇒ Object
generat html file
80 81 82 |
# File 'lib/daru/view/table.rb', line 80 def export_html_file(path='./plot.html') @adapter.export_html_file(@table, 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
87 88 89 |
# File 'lib/daru/view/table.rb', line 87 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.
70 71 72 |
# File 'lib/daru/view/table.rb', line 70 def init_script @adapter.init_script end |
#show_in_iruby ⇒ Object
display in IRuby notebook
57 58 59 |
# File 'lib/daru/view/table.rb', line 57 def show_in_iruby @adapter.show_in_iruby @table end |