worked on GFX

This commit is contained in:
2018-02-26 10:08:23 +01:00
parent e8c1f453d0
commit ea29f0fc90
21 changed files with 3701 additions and 27 deletions

28
tex/gfx/error.gp Normal file
View File

@@ -0,0 +1,28 @@
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} "