Initial commit
[aggexp.git] / scripts / buildexp / plotComparison.R
CommitLineData
a961f8a1
BA
1library(aggexp)
2rr_all = runAlgorithm("rr", experts=1:22, stations="PQV_2014", H=183)
3ml_all = runAlgorithm("ml", experts=1:22, stations="PQV_2014", H=183, grad=TRUE)
4ml_half = runAlgorithm("ml", experts=c(1:10,11,13,15,17,19,21), stations="PQV_2014", H=183, grad=TRUE)
5rr_half = runAlgorithm("rr", experts=c(1:10,11,13,15,17,19,21), stations="PQV_2014", H=183)
6rr_nogam = runAlgorithm("rr", experts=1:10, stations="PQV_2014", H=183)
7ml_nogam = runAlgorithm("ml", experts=1:10, stations="PQV_2014", H=183, grad=TRUE)
8
9png("comparePerformances.png", width=1920, height=1080)
10par(las=1, mfrow=c(2,3))
11plotCloud(rr_nogam, main="RR - no GAM")
12plotCloud(rr_half, main="RR - high polluted GAM")
13plotCloud(rr_all, main="RR - all GAM")
14plotCloud(ml_nogam, main="ML - no GAM")
15plotCloud(ml_half, main="ML - high polluted GAM")
16plotCloud(ml_all, main="ML - all GAM")
17dev.off()