add gnuplot plotting
This commit is contained in:
17
template.gnuplot
Normal file
17
template.gnuplot
Normal file
@@ -0,0 +1,17 @@
|
||||
datafile = '$FILE'
|
||||
set datafile separator ','
|
||||
|
||||
set title '$TITLE'
|
||||
set key autotitle columnhead
|
||||
set xlabel "$XLABEL"
|
||||
set ylabel "$YLABEL"
|
||||
|
||||
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'
|
||||
plot datafile using 1:2 with linespoints linestyle 1
|
||||
replot
|
||||
Reference in New Issue
Block a user