Metadata-Version: 2.1
Name: plt-cli
Version: 0.1.4
Summary: A CLI plotting utility
Home-page: https://github.com/rlschuller/plt
Author: Rodrigo Loro Schuller
Author-email: rloroschuller@gmail.com
Project-URL: Bug Tracker, https://github.com/rlschuller/plt/issues
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE

# plt

Read lists of numbers from stdin.

For each list, numbers are separated by by `[^0-9.\-eE+]`, and can be used for 3
distinct types of plots:

    1) --line (-l)
    2) --scatter (-s)
    3) --histogram (-t)
    4) --normalized_histogram (-nt)

With options 1 and 3 and 4, the list of numbers is interpreted as a 1D array, i.e.,

```
    (x1, x2, ..., xn).
```

For 2, the format is

```
    (x1, y1, x2, y2, ... , xn, yn)
```

Lists are separated by `PLT_SEPARATOR`, whose default value is `&&`.
