From 5ee1ff348d08422e8917cacd74e23ad7f8db4952 Mon Sep 17 00:00:00 2001 From: kojix2 <2xijok@gmail.com> Date: Sat, 12 Dec 2020 23:05:30 +0900 Subject: [PATCH] Test README.md --- README.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 4e63ff0..b0d51f5 100644 --- a/README.md +++ b/README.md @@ -36,14 +36,16 @@ echo -e "from numpy import random;" \ ### lineplot ```sh -curl -sL https://git.io/AirPassengers \ # CSV +# CSV +curl -sL https://git.io/AirPassengers \ | cut -f2,3 -d, \ -| uplot line -w 50 -h 15 -t 'AirPassengers' --xlim 1950,1960 +| uplot line -d, -w 50 -h 15 -t AirPassengers --xlim 1950,1960 --ylim 0,600 ``` ### scatter ```sh +# TSV curl -sL https://git.io/YouPlotIris \ # TSV | cut -f1-4 \ | uplot scatter -H -t IRIS