Module: Nyaplot::Diagrams::Histogram
- Includes:
- Jsonizable
- Defined in:
- lib/nyaplot/diagram.rb
Instance Attribute Summary collapse
-
#color ⇒ Array<String>
Array of color codes.
-
#stroke_color ⇒ String
Color code.
-
#stroke_width ⇒ Numeric
The width of stroke.
-
#value ⇒ Symbol
The column label from which histogram is created.
-
#width ⇒ Symbol
The width of each bar.
Instance Method Summary collapse
Methods included from Jsonizable
#before_to_json, #get_property, included, #init_properties, #set_property, #to_json
Instance Attribute Details
#color ⇒ Array<String>
Returns array of color codes.
91 |
# File 'lib/nyaplot/diagram.rb', line 91 define_group_properties(:options, [:title, :value, :bin_num, :width, :color, :stroke_color, :stroke_width]) |
#stroke_color ⇒ String
Returns color code.
91 |
# File 'lib/nyaplot/diagram.rb', line 91 define_group_properties(:options, [:title, :value, :bin_num, :width, :color, :stroke_color, :stroke_width]) |
#stroke_width ⇒ Numeric
Returns the width of stroke.
91 |
# File 'lib/nyaplot/diagram.rb', line 91 define_group_properties(:options, [:title, :value, :bin_num, :width, :color, :stroke_color, :stroke_width]) |
#value ⇒ Symbol
Returns the column label from which histogram is created.
91 |
# File 'lib/nyaplot/diagram.rb', line 91 define_group_properties(:options, [:title, :value, :bin_num, :width, :color, :stroke_color, :stroke_width]) |
#width ⇒ Symbol
Returns the width of each bar. The specified value should be in the range 0 to 1.
91 |
# File 'lib/nyaplot/diagram.rb', line 91 define_group_properties(:options, [:title, :value, :bin_num, :width, :color, :stroke_color, :stroke_width]) |
Instance Method Details
#process_data(df, labels) ⇒ Object
93 94 95 96 97 98 |
# File 'lib/nyaplot/diagram.rb', line 93 def process_data(df, labels) label = labels[0] value(label) @xrange = [(df[label].to_a.min < 0 ? df[label].to_a.min : 0), df[label].to_a.max] @yrange = [0, df[label].to_a.length] end |
#zoom? ⇒ Boolean
100 101 102 |
# File 'lib/nyaplot/diagram.rb', line 100 def zoom? false end |