masterarbeit/dokumentation/evolution1d/20171005-evolution1D_7x7_100Times.gnuplot.script
2017-10-24 13:22:20 +02:00

21 lines
1.0 KiB
Plaintext

set datafile separator ","
f(x)=a*x+b
fit f(x) "20171005-evolution1D_7x7_100Times.csv" every ::1 using 2:5 via a,b
set terminal png
set xlabel 'Regularity'
set ylabel 'Iterations'
set output "20171005-evolution1D_7x7_100Times_regularity-vs-steps.png"
plot "20171005-evolution1D_7x7_100Times.csv" every ::1 using 2:5 title "data", f(x) title "lin. fit" lc rgb "black"
g(x)=aa*x+bb
fit g(x) "20171005-evolution1D_7x7_100Times.csv" every ::1 using 4:5 via aa,bb
set xlabel 'Improvement potential'
set ylabel 'Iterations'
set output "20171005-evolution1D_7x7_100Times_improvement-vs-steps.png"
plot "20171005-evolution1D_7x7_100Times.csv" every ::1 using 4:5 title "data", g(x) title "lin. fit" lc rgb "black"
h(x)=aaa*x+bbb
fit h(x) "20171005-evolution1D_7x7_100Times.csv" every ::1 using 4:6 via aaa,bbb
set xlabel 'Improvement potential'
set ylabel 'Fitting error'
set output "20171005-evolution1D_7x7_100Times_improvement-vs-evo-error.png"
plot "20171005-evolution1D_7x7_100Times.csv" every ::1 using 4:6 title "data", h(x) title "lin. fit" lc rgb "black"