Test README

This commit is contained in:
kojix2 2020-12-12 22:58:53 +09:00 committed by GitHub
parent caaa1f99a3
commit 1338796ddc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -36,15 +36,15 @@ echo -e "from numpy import random;" \
### lineplot ### lineplot
```sh ```sh
curl -s https://git.io/YouPlotIris \ curl -sL https://git.io/AirPassengers \ # CSV
| cut -f2 -d, \ | cut -f2,3 -d, \
| uplot line -w 50 -h 15 -t 'PCR positive tests' --xlabel Date --ylabel number | uplot line -w 50 -h 15 -t 'AirPassengers' --xlim 1950,1960
``` ```
### scatter ### scatter
```sh ```sh
curl -s https://git.io/YouPlotIris \ curl -sL https://git.io/YouPlotIris \ # TSV
| cut -f1-4 \ | cut -f1-4 \
| uplot scatter -H -t IRIS | uplot scatter -H -t IRIS
``` ```
@ -52,7 +52,7 @@ curl -s https://git.io/YouPlotIris \
### density ### density
```sh ```sh
curl -s https://git.io/YouPlotIris \ curl -sL https://git.io/YouPlotIris \
| cut -f1-4 \ | cut -f1-4 \
| uplot density -H -t IRIS | uplot density -H -t IRIS
``` ```
@ -60,7 +60,7 @@ curl -s https://git.io/YouPlotIris \
### boxplot ### boxplot
```sh ```sh
curl -s https://git.io/YouPlotIris \ curl -sL https://git.io/YouPlotIris \
| cut -f1-4 \ | cut -f1-4 \
| uplot boxplot -H -t IRIS | uplot boxplot -H -t IRIS
``` ```