set terminal pngcairo size 1000,600 enhanced font 'Arial,12' set output 'SIS_Scenarios.png' set title "Propagation du virus sur 3 scénarios" set xlabel "Jours" set ylabel "Fraction de population infectée" set grid ytics # Si tu veux un log scale sur Y (optionnel) # set logscale y # set yrange [0:1] # entre 0 et 1 pour les fractions plot 'scenario_no_action.dat' with linespoints title 'Aucun anti-virus', \ 'scenario_random_immunization.dat' with linespoints title 'Immunisation aléatoire 50%', \ 'scenario_selective_immunization.dat' with linespoints title 'Immunisation sélective 50%'