Module: YouPlot::Backends::UnicodePlotBackend
- Defined in:
- lib/youplot/backends/unicode_plot_backend.rb
Class Method Summary collapse
- .barplot(data, params, fmt = nil, count: false) ⇒ Object
- .boxplot(data, params) ⇒ Object
- .check_series_size(data, fmt) ⇒ Object
- .colors(color_names = false) ⇒ Object
- .density(data, params, fmt = 'xyy') ⇒ Object
- .get_method2(method1) ⇒ Object
- .histogram(data, params) ⇒ Object
- .line(data, params, fmt = nil) ⇒ Object
- .lines(data, params, fmt = 'xyy') ⇒ Object
- .plot_fmt(data, fmt, method1, params) ⇒ Object
- .plot_xyxy(data, method1, params) ⇒ Object
- .plot_xyy(data, method1, params) ⇒ Object
- .scatter(data, params, fmt = 'xyy') ⇒ Object
Class Method Details
.barplot(data, params, fmt = nil, count: false) ⇒ Object
12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 |
# File 'lib/youplot/backends/unicode_plot_backend.rb', line 12 def (data, params, fmt = nil, count: false) headers = data.headers series = data.series # `uplot count` if count series = Processing.count_values(series[0]) params.title = headers[0] if headers end if series.size == 1 # If there is only one series.use the line number for label. params.title ||= headers[0] if headers labels = Array.new(series[0].size) { |i| (i + 1).to_s } values = series[0].map(&:to_f) else # If there are 2 or more series... if fmt == 'yx' # assume that the first 2 series are the y and x series respectively. x_col = 1 y_col = 0 else # assume that the first 2 series are the x and y series respectively. x_col = 0 y_col = 1 end params.title ||= headers[y_col] if headers labels = series[x_col] values = series[y_col].map(&:to_f) end UnicodePlot.(labels, values, **params.to_hc) end |
.boxplot(data, params) ⇒ Object
146 147 148 149 150 151 152 |
# File 'lib/youplot/backends/unicode_plot_backend.rb', line 146 def boxplot(data, params) headers = data.headers series = data.series headers ||= (1..series.size).map(&:to_s) series.map! { |s| s.map(&:to_f) } UnicodePlot.boxplot(headers, series, **params.to_hc) end |
.check_series_size(data, fmt) ⇒ Object
168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 |
# File 'lib/youplot/backends/unicode_plot_backend.rb', line 168 def check_series_size(data, fmt) series = data.series if series.size == 1 warn 'youplot: There is only one series of input data. Please check the delimiter.' warn '' warn " Headers: \e[35m#{data.headers.inspect}\e[0m" warn " The first item is: \e[35m\"#{series[0][0]}\"\e[0m" warn " The last item is : \e[35m\"#{series[0][-1]}\"\e[0m" exit 1 end if fmt == 'xyxy' && series.size.odd? warn 'YouPlot: In the xyxy format, the number of series must be even.' warn '' warn " Number of series: \e[35m#{series.size}\e[0m" warn " Headers: \e[35m#{data.headers.inspect}\e[0m" exit 1 end end |
.colors(color_names = false) ⇒ Object
154 155 156 157 158 159 160 161 162 163 164 165 166 |
# File 'lib/youplot/backends/unicode_plot_backend.rb', line 154 def colors(color_names = false) UnicodePlot::StyledPrinter::TEXT_COLORS.each do |k, v| print v print k unless color_names print "\t" print ' ●' end print "\033[0m" print "\t" end puts end |
.density(data, params, fmt = 'xyy') ⇒ Object
141 142 143 144 |
# File 'lib/youplot/backends/unicode_plot_backend.rb', line 141 def density(data, params, fmt = 'xyy') check_series_size(data, fmt) plot_fmt(data, fmt, :densityplot, params) end |
.get_method2(method1) ⇒ Object
80 81 82 |
# File 'lib/youplot/backends/unicode_plot_backend.rb', line 80 def get_method2(method1) "#{method1}!".to_sym end |
.histogram(data, params) ⇒ Object
43 44 45 46 47 48 49 |
# File 'lib/youplot/backends/unicode_plot_backend.rb', line 43 def histogram(data, params) headers = data.headers series = data.series params.title ||= data.headers[0] if headers values = series[0].map(&:to_f) UnicodePlot.histogram(values, **params.to_hc) end |
.line(data, params, fmt = nil) ⇒ Object
51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 |
# File 'lib/youplot/backends/unicode_plot_backend.rb', line 51 def line(data, params, fmt = nil) headers = data.headers series = data.series if series.size == 1 # If there is only one series, it is assumed to be sequential data. params.ylabel ||= headers[0] if headers y = series[0].map(&:to_f) UnicodePlot.lineplot(y, **params.to_hc) else # If there are 2 or more series... if fmt == 'yx' # assume that the first 2 series are the y and x series respectively. x_col = 1 y_col = 0 else # assume that the first 2 series are the x and y series respectively. x_col = 0 y_col = 1 end if headers params.xlabel ||= headers[x_col] params.ylabel ||= headers[y_col] end x = series[x_col].map(&:to_f) y = series[y_col].map(&:to_f) UnicodePlot.lineplot(x, y, **params.to_hc) end end |
.lines(data, params, fmt = 'xyy') ⇒ Object
131 132 133 134 |
# File 'lib/youplot/backends/unicode_plot_backend.rb', line 131 def lines(data, params, fmt = 'xyy') check_series_size(data, fmt) plot_fmt(data, fmt, :lineplot, params) end |
.plot_fmt(data, fmt, method1, params) ⇒ Object
118 119 120 121 122 123 124 125 126 127 128 129 |
# File 'lib/youplot/backends/unicode_plot_backend.rb', line 118 def plot_fmt(data, fmt, method1, params) case fmt when 'xyy' plot_xyy(data, method1, params) when 'xyxy' plot_xyxy(data, method1, params) when 'yx' raise "Incorrect format: #{fmt}" else raise "Unknown format: #{fmt}" end end |
.plot_xyxy(data, method1, params) ⇒ Object
101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 |
# File 'lib/youplot/backends/unicode_plot_backend.rb', line 101 def plot_xyxy(data, method1, params) headers = data.headers series = data.series method2 = get_method2(method1) series.map! { |s| s.map(&:to_f) } series = series.each_slice(2).to_a params.name ||= headers[0] if headers params.xlim = series.map(&:first).flatten.minmax # why need? params.ylim = series.map(&:last).flatten.minmax # why need? x1, y1 = series.shift plot = UnicodePlot.public_send(method1, x1, y1, **params.to_hc) series.each_with_index do |(xi, yi), i| UnicodePlot.public_send(method2, plot, xi, yi, name: headers&.[]((i + 1) * 2)) end plot end |
.plot_xyy(data, method1, params) ⇒ Object
84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 |
# File 'lib/youplot/backends/unicode_plot_backend.rb', line 84 def plot_xyy(data, method1, params) headers = data.headers series = data.series method2 = get_method2(method1) series.map! { |s| s.map(&:to_f) } if headers params.name ||= headers[1] params.xlabel ||= headers[0] end params.ylim ||= series[1..-1].flatten.minmax # why need? plot = UnicodePlot.public_send(method1, series[0], series[1], **params.to_hc) 2.upto(series.size - 1) do |i| UnicodePlot.public_send(method2, plot, series[0], series[i], name: headers&.[](i)) end plot end |
.scatter(data, params, fmt = 'xyy') ⇒ Object
136 137 138 139 |
# File 'lib/youplot/backends/unicode_plot_backend.rb', line 136 def scatter(data, params, fmt = 'xyy') check_series_size(data, fmt) plot_fmt(data, fmt, :scatterplot, params) end |