Skip to content
Snippets Groups Projects
Commit 11dd176b authored by Sam Moore's avatar Sam Moore
Browse files

Add .plt templates for gnuplot

parent 5f9adddd
Branches
Tags
No related merge requests found
set term png size 640,480
set output "scores.png"
set xtics 1
set ytics 1
set xrange [1:]
set xlabel "Games Played"
set ylabel "Score"
set title "All scores"
set key top left
set term png size 640,480
set output "[NAME].png"
set xtics 1
set ytics 1
set xrange [1:]
set xlabel "Games Played"
set ylabel "Score"
set title "[NAME] scores"
set key top left
plot "[NAME].scores" using ($0+1):1 with linespoints title "[NAME]"
exit
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment