scenarioImmunisation.gnu 611 octets
Newer Older
MOLINIER Hugo's avatar
MOLINIER Hugo a validé
set terminal pngcairo size 1000,600 enhanced font 'Arial,12'
MOLINIER Hugo's avatar
MOLINIER Hugo a validé
set output 'SIS_Scenarios.png'
MOLINIER Hugo's avatar
MOLINIER Hugo a validé

MOLINIER Hugo's avatar
MOLINIER Hugo a validé
set title "Propagation du virus sur 3 scénarios"
set xlabel "Jours"
set ylabel "Fraction de population infectée"
MOLINIER Hugo's avatar
MOLINIER Hugo a validé
set grid ytics

# Si tu veux un log scale sur Y (optionnel)
# set logscale y
MOLINIER Hugo's avatar
MOLINIER Hugo a validé
# set yrange [0:1]   # entre 0 et 1 pour les fractions
MOLINIER Hugo's avatar
MOLINIER Hugo a validé

MOLINIER Hugo's avatar
MOLINIER Hugo a validé
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%'