This repository has been archived on 2020-04-08. You can view files and clone it, but cannot push or open issues or pull requests.
Files
Fusion2018/presentation43/gfx/error.gp
2019-05-01 10:46:15 +02:00

33 lines
843 B
Gnuplot

reset
#set terminal windows
set terminal epslatex size 3.5,3
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{bandwidth $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 "#4E9A06" 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 "#FCAF3E" lw 2.0 title "\\footnotesize{BoxKDE} "
#FCAF3E
#CC0000
#4E9A06
#4E9A06