From 1338796ddc327d362ff966ed596cafaf5c3d087b Mon Sep 17 00:00:00 2001 From: kojix2 <2xijok@gmail.com> Date: Sat, 12 Dec 2020 22:58:53 +0900 Subject: [PATCH] Test README --- README.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 253c127..4e63ff0 100644 --- a/README.md +++ b/README.md @@ -36,15 +36,15 @@ echo -e "from numpy import random;" \ ### lineplot ```sh -curl -s https://git.io/YouPlotIris \ -| cut -f2 -d, \ -| uplot line -w 50 -h 15 -t 'PCR positive tests' --xlabel Date --ylabel number +curl -sL https://git.io/AirPassengers \ # CSV +| cut -f2,3 -d, \ +| uplot line -w 50 -h 15 -t 'AirPassengers' --xlim 1950,1960 ``` ### scatter ```sh -curl -s https://git.io/YouPlotIris \ +curl -sL https://git.io/YouPlotIris \ # TSV | cut -f1-4 \ | uplot scatter -H -t IRIS ``` @@ -52,7 +52,7 @@ curl -s https://git.io/YouPlotIris \ ### density ```sh -curl -s https://git.io/YouPlotIris \ +curl -sL https://git.io/YouPlotIris \ | cut -f1-4 \ | uplot density -H -t IRIS ``` @@ -60,7 +60,7 @@ curl -s https://git.io/YouPlotIris \ ### boxplot ```sh -curl -s https://git.io/YouPlotIris \ +curl -sL https://git.io/YouPlotIris \ | cut -f1-4 \ | uplot boxplot -H -t IRIS ```