blob: 736f4479d530df7908074d868027717596c32317 [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ínez94283d12022-01-29 12:52:42 +01006set xrange[0:7000]
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"