|
- set datafile separator ';'
-
- # Set first two line styles to blue (#0060ad) and red (#dd181f)
- set style line 1 \
- linecolor rgb '#0060ad' \
- linetype 1 linewidth 2 \
- pointtype 7 pointsize 1.5
- set style line 2 \
- linecolor rgb '#dd181f' \
- linetype 1 linewidth 2 \
- dashtype 3 \
- pointtype 5 pointsize 1.5
- set style line 3 \
- linecolor rgb '#0060ad' \
- linetype 1 linewidth 2 \
- pointtype 7 pointsize 1.5
- set style line 4 \
- linecolor rgb '#00ff00' \
- linetype 1 linewidth 2 \
- pointtype 7 pointsize 1.5
-
- set ylabel "proba"
- set xlabel "n"
-
- plot 'complete-crossover-proba-filter.csv' using 1:2 with lines linestyle 1, \
- '' using 1:3 with lines linestyle 2, \
- '' using 1:4 with lines linestyle 3, \
- '' using 1:5 with lines linestyle 4
-
|