A command line application for live-plotting data.
Features: - Live plotting from stdin - 1-many input channels - Configurable regex for each channel - Log data to CSV while plotting - Cross-platform
``` cliplot will live plot data piped into stdin. It can plot multiple channels, parse data with regex, save data to a CSV, and more.
Usage: cliplot [OPTIONS]
Options:
-r, --regexes $float$
will be used.
Each regex should be unambiguous from the others, and contain one capture group that contains a string convertable to a f64. Deliminators (such as the `$` above) are necessary to avoid numbers being cut across buffer breaks.
--csv <CSV>
Writes read data into a CSV file at path if set.
The CSV file will contain the timestamp of each reading in ms, followed by the data and finally the channel number.
-v, --verbose... More output per occurrence
-q, --quiet... Less output per occurrence
-h, --help
Print help information (use -h
for a summary)
-V, --version Print version information
```
-r
flags in order.shell
some stream | cliplot
Plots data from an input stream, parsing for \$([+|-]?\d*\.?\d*)\$
(a float surrounded by $)
shell
python3 print_with_delta.py 0.0032 | cliplot -r '\$([+|-]?\d*\.?\d*)\$' -r '%([+|-]?\d*\.?\d*)%' -c test.csv
Plots data from a python script, with channel 0 eliminated by $$ and channel 1 eliminated
by %%. Also log this data to a CSV file called test.csv.
shell
cargo install cliplot
or with this repo
```shell
cargo build --release
target/release/cliplot --help ```
The GitHub releases tab should have debian archives and portable Windows builds.