2
0
Fork 0
mirror of https://github.com/MartinThoma/LaTeX-examples.git synced 2025-04-26 06:48:04 +02:00
LaTeX-examples/math/gnuplot/draw-csv/README.md

16 lines
395 B
Markdown
Raw Normal View History

2012-10-28 21:14:56 +01:00
GnuPlot and CSV-Files
=====================
Syntax: `plot 'data.csv' every::1::7 using 1:2 with boxes`
* `data.csv`: The CSV-file
* `every::1::7`: use data from line 1 to line 7
* `using 1:2`: use first and second column
* `with boxes`: can also be `lines` or `vectors head size 0.1,20,60 filled lc palette`
2013-05-16 12:43:27 +02:00
![Example](draw-csv.png)
2012-10-28 21:14:56 +01:00
Examples
--------
* http://www.gnuplotting.org/tag/data/