gnuplot has support for changing the data separator (see set datafile separator, p. 160 of http://www.gnuplot.info/docs_6.0/Gnuplot_6.pdf), but as far as I can tell feedgnuplot doesn't.
Passing --set 'datafile separator comma' does no good, because as far as I can tell feedgnuplot parses the input lines before sending them to gnuplot.
I have data in CSV files that I'd like to plot, and it looks like my options currently are
- preprocess the data to convert separators from commas to whitespace
- learn how to use
gnuplot directly instead of fronting it with feedgnuplot
At the very least, the documentation should state that values need to be space-delimited. Currently README.md uses the phrase "Input parsing is flexible", which I think is misleading with respect to the input data format.
gnuplothas support for changing the data separator (seeset datafile separator, p. 160 of http://www.gnuplot.info/docs_6.0/Gnuplot_6.pdf), but as far as I can tellfeedgnuplotdoesn't.Passing
--set 'datafile separator comma'does no good, because as far as I can tellfeedgnuplotparses the input lines before sending them tognuplot.I have data in CSV files that I'd like to plot, and it looks like my options currently are
gnuplotdirectly instead of fronting it withfeedgnuplotAt the very least, the documentation should state that values need to be space-delimited. Currently
README.mduses the phrase "Input parsing is flexible", which I think is misleading with respect to the input data format.