chart
chart copied to clipboard
Quick & smart charting for STDIN
Maybe introduce an command line option `-o` or something like that, which is followed by a file path for writing the chart to. It can be super useful for generating...
For example, I want to generate the bar chart for below csv ``` GaryZ@GaryZhus-MacBook-Pro-2 ~/Desktop $ cat test2.csv ,jack,jame age,25,30 height,168,172 ``` After running this command: `cat test2.csv | chart...
Let's say the data is separated by commas. This input: ``` 1,2,3 1,,3 1,2,3 ``` Should be interpreted as 3 rows and 3 columns with all floats, the second row...
There's a very common case for input that looks like this: ``` 1 5 10 11 12 ... ``` It's not clear what `chart` should do in this case. The...
This is a great tool to be sure, and I think it would be much better if it supported histograms. Often, when you are just trying to get a sense...
At the moment, line charts don't show legends, which can make the chart hard to read when there are multiple series. It'd be great if there is an optional command...
this is best outlined with this output from this bash script (which is taken from the readme) ``` ~ history | awk '{print $2}' | chart -debug Lines read 10021...
When running `go install github.com/marianogappa/chart@latest` I am getting ``` go: github.com/marianogappa/chart imports github.com/Sirupsen/logrus: github.com/Sirupsen/[email protected]: parsing go.mod: module declares its path as: github.com/sirupsen/logrus but was required as: github.com/Sirupsen/logrus ```