28 lines
738 B
Gnuplot
28 lines
738 B
Gnuplot
#set terminal pngcairo
|
|
#set output "bla.png"
|
|
|
|
set terminal epslatex size 3.7,2
|
|
set output "errorOverTime.tex"
|
|
|
|
set lmargin 4.5
|
|
|
|
set xlabel "\\footnotesize{time in seconds}"
|
|
set ylabel "\\footnotesize{error in meters}" offset +1.7,0
|
|
|
|
set format x "\\footnotesize{%h}"
|
|
set format y "\\footnotesize{%h}"
|
|
|
|
set key samplen 0.75
|
|
|
|
set yrange [0:18]
|
|
set xrange [0:332]
|
|
|
|
set ytics 0,5,15
|
|
|
|
plot \
|
|
"0_1519064452.csv" using ($1/1000):2 with lines lc rgb "#c8c8c8" lw 2.0 title "\\footnotesize{maximum particle}", \
|
|
"0_1519062956.csv" using ($1/1000):2 with lines lc rgb "#3465A4" lw 1.5 title "\\footnotesize{weighted average particle}",\
|
|
"0_1519062756.csv" using ($1/1000):2 with lines lc rgb "#FCAF3E" lw 1.5 title "\\footnotesize{BoxKDE}"
|
|
|
|
|