Use headers as series name

This commit is contained in:
kojix2 2020-07-30 15:08:09 +09:00
parent b4856e45d0
commit 8536abc061

View File

@ -6,13 +6,17 @@ module Uplot
def initialize(argv) def initialize(argv)
@params = {} @params = {}
@ptype = nil @ptype = nil
@headers = nil
@delimiter = "\t"
@output = false
parse_options(argv) parse_options(argv)
end end
def opt_new def opt_new
OptionParser.new do |opt| opt = OptionParser.new do |opt|
opt.on('-o', '--output', TrueClass) { |v| @output = v } opt.on('-o', '--output', TrueClass) { |v| @output = v }
opt.on('-d', '--delimiter', String) { |v| @delimiter = v } opt.on('-d', '--delimiter VAL', String) { |v| @delimiter = v }
opt.on('-H', '--headers', TrueClass) { |v| @headers = v }
opt.on('-t', '--title VAL', String) { |v| @params[:title] = v } opt.on('-t', '--title VAL', String) { |v| @params[:title] = v }
opt.on('-w', '--width VAL', Numeric) { |v| @params[:width] = v } opt.on('-w', '--width VAL', Numeric) { |v| @params[:width] = v }
opt.on('-h', '--height VAL', Numeric) { |v| @params[:height] = v } opt.on('-h', '--height VAL', Numeric) { |v| @params[:height] = v }
@ -51,33 +55,45 @@ module Uplot
# Sometimes the input file does not end with a newline code. # Sometimes the input file does not end with a newline code.
while input = Kernel.gets(nil) while input = Kernel.gets(nil)
input.freeze input.freeze
@delimiter ||= "\t" data, headers = preprocess(input)
@headers ||= false
data = CSV.parse(input, headers: @headers, col_sep: @delimiter)
case @ptype case @ptype
when 'hist', 'histogram' when 'hist', 'histogram'
histogram(data) histogram(data, headers)
when 'line', 'lineplot' when 'line', 'lineplot'
line(data) line(data, headers)
when 'lines' when 'lines'
lines(data) lines(data, headers)
end.render($stderr) end.render($stderr)
print input if @output print input if @output
end end
end end
def histogram(data) def preprocess(input)
series = data.map { |r| r[0].to_f } data = CSV.parse(input, col_sep: @delimiter)
if @headers
headers = data.shift
data = data.transpose
[data, headers]
else
data = data.transpose
[data, nil]
end
end
def histogram(data, headers)
@params[:title] ||= headers[0] if headers # labels?
series = data[0].map(&:to_f)
UnicodePlot.histogram(series, **@params.compact) UnicodePlot.histogram(series, **@params.compact)
end end
def line(data) def line(data, headers)
data = data.transpose
if data.size == 1 if data.size == 1
@params[:name] ||= headers[0] if headers
y = data[0] y = data[0]
x = (1..y.size).to_a x = (1..y.size).to_a
else else
@params[:name] ||= headers[1] if headers
x = data[0] x = data[0]
y = data[1] y = data[1]
end end
@ -86,12 +102,12 @@ module Uplot
UnicodePlot.lineplot(x, y, **@params.compact) UnicodePlot.lineplot(x, y, **@params.compact)
end end
def lines(_input_lines) def lines(data, headers)
data = data.transpose
data.map { |series| series.map(&:to_f) } data.map { |series| series.map(&:to_f) }
@params[:name] ||= headers[1] if headers
plot = UnicodePlot.lineplot(data[0], data[1], **@params.compact) plot = UnicodePlot.lineplot(data[0], data[1], **@params.compact)
2.upto(data.size - 1) do |i| 2.upto(data.size - 1) do |i|
UnicodePlot.lineplot!(plot, data[0], data[i]) UnicodePlot.lineplot!(plot, data[0], data[i], name: headers[i])
end end
plot plot
end end