blob: b53ef73c22b52f213ce03f7d3691c16915ac9466 [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ínez51938522022-01-21 20:19:15 +01006set xrange[0:6500]
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"