From 942705ab23276c0ea8c6f6c6f5b4155805dcd042 Mon Sep 17 00:00:00 2001 From: kojix2 <2xijok@gmail.com> Date: Fri, 6 Nov 2020 09:56:35 +0900 Subject: [PATCH] Update help messages --- lib/uplot/command/parser.rb | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/lib/uplot/command/parser.rb b/lib/uplot/command/parser.rb index 51dc5dd..0217684 100644 --- a/lib/uplot/command/parser.rb +++ b/lib/uplot/command/parser.rb @@ -43,7 +43,7 @@ module Uplot opt.on('-H', '--headers', TrueClass, 'specify that the input has header row') do |v| @headers = v end - opt.on('-T', '--transpose', TrueClass) do |v| + opt.on('-T', '--transpose', TrueClass, 'transpose the axes of the input data') do |v| @transpose = v end opt.on('-t', '--title VAL', String, 'print string on the top of plot') do |v| @@ -106,7 +106,10 @@ module Uplot scatter s density d boxplot box - colors + colors show the list of available colors + + count c baplot based on the number of occurrences + (slower than `sort | uniq -c | sort -n -k1`) MSG end end