32 lines
981 B
Gnuplot
32 lines
981 B
Gnuplot
set terminal epslatex size 3.5,2.5
|
|
set output "perf.tex"
|
|
|
|
set logscale y 10
|
|
set logscale x 10
|
|
|
|
set grid
|
|
|
|
set key box opaque bottom right samplen 0.75 spacing 0.9 width -8
|
|
|
|
set lmargin 5.2
|
|
set tmargin 0.5
|
|
set rmargin 0.5
|
|
|
|
#set xtics nomirror
|
|
#set ytics nomirror
|
|
|
|
set format x "\\footnotesize{$10^{%T}$}"
|
|
set format y "\\footnotesize{$10^{%T}$}"
|
|
|
|
set xlabel "\\footnotesize{number of grid points $G$}"
|
|
set ylabel "\\footnotesize{$t$ in seconds}" offset +2.7,0
|
|
|
|
plot \
|
|
"perf/FastKDE.csv" using (column(1)**2):(column(2)) with lines lc rgb "#FCAF3E" lw 2.0 title "\\footnotesize{FastKDE}",\
|
|
"perf/R.csv" using (column(1)**2):(column(2)/1e9) with lines lc rgb "#CC0000" lw 2.0 title "\\footnotesize{BKDE}",\
|
|
"perf/Box.csv" using (column(1)**2):(column(2)/1e9) with lines lc rgb "#4E9A06" lw 2.0 title "\\footnotesize{BoxKDE}",\
|
|
"perf/WeightedAverage.csv" using (column(1)**2):(column(2)/1e9) with lines lc rgb "#3465A4" lw 2.0 title "\\footnotesize{weighted-average}"
|
|
|
|
|
|
|