blob: 5b3753bb639a26d26f89cc2d25244ae33bac5731 [file] [log] [blame]
avm99963c3b457a2020-07-21 14:23:15 +02001set xlabel "Casos actius per 10^5 habitants"
2set ylabel "Mitjana taxa de creixement darrers 7 dies"
3set title font "Helvetica,20"
4
5set yrange[0:5]
Adrià Vilanova Martínez0df1bf82021-07-15 18:45:25 +02006set xrange[0:1800]
avm99963c3b457a2020-07-21 14:23:15 +02007set samples 400
8
9set key off
10set tics out scale 0.5,0.2
11
12min(a, b) = (a < b ? a : b)
13
14# The different colored areas correspond to the classification of the EPG values defined on page 8 at https://biocomsc.upc.edu/en/shared/20200506_report_web_51.pdf
15
16lastUpdated = system("tail -n 1 ".fileName." | awk '{print $1;}'")
17graphTitle = name
18graphDataFile = fileName
19load "includes/plotSingleGraph.gnu"