2022-10-15 14:02:46 +02:00
|
|
|
## Fixes to be implemented
|
|
|
|
|
|
|
|
|
|
## Features to be implemented
|
|
|
|
|
|
2022-10-22 12:27:33 +02:00
|
|
|
- add comment support (csf.NewReader().Comment = '#')
|
|
|
|
|
|
2022-10-15 14:02:46 +02:00
|
|
|
- add --no-headers option
|
|
|
|
|
|
2023-10-02 18:15:41 +02:00
|
|
|
### Lisp Plugin Infrastructure using zygo
|
2022-09-28 19:33:57 +02:00
|
|
|
|
2023-10-02 18:15:41 +02:00
|
|
|
Hooks:
|
|
|
|
|
|
|
|
|
|
| Filter | Purpose | Args | Return |
|
|
|
|
|
|-----------|-------------------------------------------------------------|---------------------|--------|
|
|
|
|
|
| filter | include or exclude lines | row as hash | bool |
|
|
|
|
|
| process | do calculations with data, store results in global lisp env | whole dataset | nil |
|
|
|
|
|
| transpose | modify a cell | headername and cell | cell |
|
|
|
|
|
| append | add one or more rows to the dataset (use this to add stats) | nil | rows |
|