29 lines
907 B
Gnuplot
29 lines
907 B
Gnuplot
set terminal epslatex size 3.5,2.5
|
|
set output "error.tex"
|
|
|
|
set grid
|
|
|
|
set key box opaque reverse left invert samplen 0.75 spacing 1.0 width -4
|
|
|
|
set lmargin 4.3
|
|
set tmargin 0.5
|
|
set rmargin 0.5
|
|
|
|
#set xtics nomirror
|
|
#set ytics nomirror
|
|
|
|
set format x "\\footnotesize{%H}"
|
|
set format y "\\footnotesize{%H}"
|
|
|
|
set xlabel "\\footnotesize{$h$}"
|
|
set ylabel "\\footnotesize{MISE ($\\times 10^{-3}$)}" offset +2.0,0
|
|
|
|
plot \
|
|
"error/KDE.csv" using (column(1)):(column(2)*1000) with lines lc rgb "#FCAF3E" lw 2.0 title "\\footnotesize{KDE} ",\
|
|
"error/R.csv" using (column(1)):(column(2)*1000) with lines lc rgb "#CC0000" lw 2.0 title "\\footnotesize{BKDE} ",\
|
|
"error/Box.csv" using (column(1)):(column(2)*1000) with lines lc rgb "#4E9A06" lw 2.0 title "\\footnotesize{BoxKDE} ",\
|
|
"error/ExBox.csv" using (column(1)):(column(2)*1000) with lines lc rgb "#4E9A06" lw 3.0 dt 3 title "\\footnotesize{ExBoxKDE} "
|
|
|
|
|
|
|