From 87bb24e236eb720cf141d9f550fcdf563c9d5e58 Mon Sep 17 00:00:00 2001 From: kojix2 <2xijok@gmail.com> Date: Sat, 3 Jul 2021 07:07:43 +0900 Subject: [PATCH] Update README.md --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 464a9c6..810798c 100644 --- a/README.md +++ b/README.md @@ -7,7 +7,7 @@ Docs Stable The MIT License - YouPlot is a command line tool that draws plots in the terminal. + YouPlot is a command line tool that draws plots on the terminal. :bar_chart: Powered by [UnicodePlot](https://github.com/red-data-tools/unicode_plot.rb) @@ -21,7 +21,7 @@ gem install youplot ## Quick Start barplot histogram scatter density boxplot - + `uplot [options] ` ### barplot @@ -189,7 +189,7 @@ The following sub-commands are available. * The `--help` option will show more detailed options for each subcommand. * `uplot hist --help` -### Set columns as x-axis or y-axis? +### Set columns as x-axis or y-axis * YouPlot treats the first column as the X axis and the second column as the Y axis. When working with multiple series, the first column is the X axis, the second column is series Y1, the third column is series Y2, and so on. * If you pass only one column of data for `line` and `bar`, YouPlot will automatically use a sequential number starting from 1 as the X-axis. @@ -203,7 +203,7 @@ The following sub-commands are available. ### Categorical data -* With gne datamash, you can manage to handle categorized data. +* With GNU datamash, you can manage to handle categorized data. * `cat test/fixtures/iris.csv | sed '/^$/d' | datamash --header-in --output-delimiter=: -t, -g5 collapse 3,4 | cut -f2-3 -d: | sed 's/:/\n/g' | uplot s -d, -T --fmt xyxy` * This is not so easy...