fix csv (again) - added tests this time. Started on #27, #36

This commit is contained in:
2025-11-18 10:09:29 -07:00
parent dae3b57f73
commit d69966bc01
6 changed files with 176 additions and 22 deletions

17
example.gnuplot Normal file
View File

@@ -0,0 +1,17 @@
datafile = 'data.csv'
set datafile separator ','
set title 'Probably the filename'
set key autotitle columnhead
set xlabel "x"
set ylabel "y"
set style line 1 linewidth 2 linecolor 1 pointtype 7 pointsize 1.5
set autoscale
set grid
set term png size 1280, 720
set output 'output.png'
plot datafile using 1:2 with linespoints linestyle 1
replot