-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAddis_Marossi_Tusetti_CODICE.Rmd
1559 lines (1227 loc) · 59.3 KB
/
Addis_Marossi_Tusetti_CODICE.Rmd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
---
title: "ML_AddisMarossiTusetti"
author: "Clara Marossi"
date: "2024-06-12"
output:
pdf_document: default
html_document: default
---
```{r setup, include=FALSE,warning=FALSE, message=FALSE}
knitr::opts_chunk$set(echo = FALSE)
```
Caricamento di tutte le librerie necessarie.
```{r}
library(tidyverse)
library(ggcorrplot)
library(dbscan)
library(e1071)
library(mlrMBO)
library(neuralnet)
library(lubridate)
library(reshape2)
library(gridExtra)
library(clusterSim)
library(randomForest)
library(Boruta)
library(clValid)
library(cluster)
library(rgenoud)
library(caret)
library(class)
library(clustMixType)
library(nnet)
library(xgboost)
library(pROC)
library(reshape2)
library(kknn)
library(plotly)
library(viridis)
library(ggrepel)
```
Caricamento del dataset e modifica dei nomi delle colonne.
```{r}
setwd("/Users/gaiaaddis22/Desktop/ML FINAL PROJ INVIATO/ML_proj")
data <- read.csv("SeoulBikeData.csv",sep=",",check.names = F)
colnames(data) <- c("Date","Count","Hour","Temp","Humidity","WindSpeed",
"Visibility","DewPointTemp","SolarRad","Rain","Snow",
"Season","Holiday","FunctioningDay")
```
# Pre-processing e EDA
Eliminiamo dal dataset i giorni in cui il sistema di noleggio non era in funzione (FunctioningDay = "No") perchè pochi (3%) e dunque irrilevanti. Poi modifichiamo il formato delle variabili dummy e della data.
```{r}
tab <- table(data$FunctioningDay)
data <- data %>%
filter(FunctioningDay != "No") %>%
dplyr::select(-FunctioningDay)
data <- data %>%
mutate(Season = as.factor(Season),
Holiday = as.factor(Holiday),
Date = dmy(Date))
cat("Percentuale di giornate nulle:", tab[1]/tab[2]*100, "%\n")
```
Non sono presenti missing values.
```{r}
sum(is.na(data))
```
Valutiamo ora la correlazione tra le variabili quantitative.
```{r}
correlazione <- cor(data[,c("Count","Temp","Humidity","WindSpeed","Visibility",
"DewPointTemp","SolarRad","Rain","Snow")])
# round(correlazione,2)
ggcorrplot(correlazione, type = "upper", lab = T, colors = c("deepskyblue","white","red2"),
title = "Correlation Matrix") +
theme(plot.title = element_text(size=22, color="black", face = "bold",family = "Tahoma"), axis.text.x = element_text(angle = 90)) +
labs(x= " " , y = " ") +
theme_void()
```
Data l'elevata correlazione tra le variabili Temp e DewPointTemp (punto di rugiada) decidiamo di eliminare la seconda.
```{r}
data <- data %>%
dplyr::select(-DewPointTemp)
```
Visualizziamo alcuni boxplot della variabile risposta Count, condizionatamente alle variabili categoriche Holiday, Season ed entrambe congiutamente.
```{r}
# Boxplot of Count by Holiday
ggplot(data, aes(x = Holiday, y = Count, fill = Holiday)) +
geom_boxplot() +
theme_test() +
coord_flip() +
scale_fill_manual(values = c("deepskyblue", "red2"))
# Boxplot of Count by Season
ggplot(data, aes(x = Season, y = Count, fill = Season)) +
geom_boxplot() +
theme_test() +
coord_flip() +
scale_fill_manual(values = c("brown2", "lightgreen", "yellow", "lightblue"))
# Boxplot of Count by Season & Holiday
ggplot(data, aes(x = Holiday, y = Count, fill = Season)) +
geom_boxplot() +
theme_test() +
coord_flip() +
scale_fill_manual(values = c("brown2", "lightgreen", "yellow", "lightblue"))
```
*Commenti:* Dai boxplot notiamo che la domanda di bicilette sembra essere leggermente minore quando la giornata è festiva (1), mentre si nota un marcato calo di domanda nella stagione invernale ed uno più leggero in primavera (2).
Visualizziamo infine gli isogrammi delle variabili quantitative.
```{r}
ggplot(melt(data[,-c(1,3,11,12)],id.vars=NULL), aes(x=value)) +
geom_histogram(aes(y=after_stat(density)),fill="deepskyblue",color="black",bins=10) +
facet_wrap(~variable,scales="free") +
geom_density(fill="lightblue", alpha=0.3) +
labs(x=" ",y=" ") +
theme_test() +
theme(
strip.background = element_rect(fill = "lightblue", color = "black"),
strip.text = element_text(color = "black", size = 10, face="bold")
)
```
E' ben evidente la diversa scala dei dati (i.e. visibility in centinaia/migliaia vs windspeed in decine), pertanto per la fase di modeling andremo a scalare i dati.
Inoltre, notiamo che le variabili "Rain" e "Snow" hanno una distribuzione molto concentrata sullo zero (zero inflated) a causa della natura stessa dei dati, per questo motivo creiamo due dummy per la presenza/assenza del fenomeno, che potrebbero essere utili nelle fasi successive.
```{r}
data <- data %>%
mutate(Rain_dummy = cut(Rain,
breaks = c(-Inf, 10^(-10), 5, Inf),
labels = c("No rain", "Low rain", "Elevate rain"),
right = FALSE)) %>%
mutate(Rain_dummy = as.factor(Rain_dummy))
data <- data %>%
mutate(Snow_dummy = ifelse(Snow == 0, "No snow", "Snow")) %>%
mutate(Snow_dummy = as.factor(Snow_dummy))
```
A partire dalla variabile "Date" creiamo due ulteriori variabili contenenti il giorno della settimana e il mese.
```{r}
Sys.setlocale("LC_TIME", "English")
data <- data %>%
mutate(Month = month(Date, label = TRUE, abbr = TRUE),
WeekDay = wday(Date, label = TRUE, abbr = FALSE ))
```
Visualizziamo ora gli istogrammi della variabile dipendente "Count" a seconda di alcune variabili temporali, per capire quale potrebbe essere la relazione che le lega.
```{r}
g1 <- ggplot(data, aes(x = WeekDay, y = Count, fill="deepskyblue")) +
geom_bar(stat = "identity") +
labs(title = "Count per Weekday", x = "Weekday", y = "Count") +
theme_minimal() +
scale_fill_manual(values = c("deepskyblue")) +
guides(fill = FALSE)
g2 <- ggplot(data, aes(x = Month, y = Count, fill="deepskyblue")) +
geom_bar(stat = "identity") +
labs(title = "Count per Month", x = "Month", y = "Count") +
theme_minimal() +
scale_fill_manual(values = c("deepskyblue")) +
guides(fill = FALSE)
g3 <- ggplot(data, aes(x = Season, y = Count, fill = Season)) +
geom_bar(stat = "identity") +
labs(title = "Count per Season", x = "Season", y = "Count") +
theme_minimal() +
scale_fill_manual(values = c("brown2", "lightgreen", "yellow", "lightblue"))
g4 <- ggplot(data, aes(x = Hour, y = Count, fill="deepskyblue")) +
geom_bar(stat = "identity") +
labs(title = "Count per Hour", x = "Hour", y = "Count") +
theme_minimal() +
scale_fill_manual(values = c("deepskyblue")) +
guides(fill = FALSE)
grid.arrange(g1,g2,g3,g4)
```
A conferma dei boxplot, si nota che la domanda di bici è molto più bassa nei mesi invernali. Inoltre, si notano dei picchi in corrispondenza degli orari di entrata e uscita dal lavoro.
Tali picchi dovrebbero essere presenti solo nei giorni lavorativi, verifichiamolo con un grafico a 3 variabili.
```{r}
grafico <- data %>%
group_by(Hour,WeekDay) %>%
summarise(n=sum(Count))
ggplot(grafico, aes(x = Hour, y = n, color = WeekDay, group = WeekDay)) +
geom_point(size = 2) +
geom_line() +
labs(x = "Hour", y = "Count", color = "WeekDay") +
theme_minimal() +
theme(axis.text.x = element_text(angle = 45, hjust = 1))
```
A conferma di quanto detto sopra, si notano 2 trend ben distinti per i giorni infrasettimanali (Mon - Fri) e il weekend (Sat - Sun).
Dunque, creiamo una nuova variabile categorica che discrimini tra weekend e giorno infrasettimanale così da poter cogliere il diverso trend.
```{r}
data <- data %>%
mutate(Weekend = as.factor(if_else(WeekDay %in% c("Saturday", "Sunday"), "Weekend", "Weekwork")))
```
Sfruttando il Local Outlier Factor (LOF) score, individuiamo i punti "candidati" come valori anomali. Come valore soglia scegliamo il classico 1.5.
```{r}
data_num <- data %>%
dplyr::select(Temp, Humidity, WindSpeed, Visibility, SolarRad, Count)
lof_scores <- lof(as.matrix(data_num), minPts = 5)
data$LOF_score <- lof_scores
outliers_lof <- which(data$LOF_score > 1.5)
percentuale_outliers <- length(outliers_lof)/dim(data)[1] * 100
cat("Numero di outlier:", length(outliers_lof), "\n")
cat("Percentuale di outlier:", percentuale_outliers, "%\n")
```
Dall'analisi di questi punti, che rappresentano circa il 2% del totale, abbiamo notato la presenza di valori con % di umidità pari a 0. Dal momento che ciò è praticamente impossibile in condizioni naturali, abbiamo deciso di eliminare queste osservazioni (essendo isolated anomalies).
```{r}
data <- data %>%
filter(Humidity!=0) %>%
dplyr::select(-c(LOF_score))
```
# Variable Importance
Per valutare l'influenza delle variabili nel determinare la domanda di biciclette sfruttiamo il metodo ***Boruta***, che consiste in un'estensione delle Random Forest applicate alla feature selection.
```{r}
data <- data %>%
mutate(Control1 = rpois(dim(data)[1],50), Control2 = rnorm(dim(data)[1],-1,10)) # variabili di controllo
boruta_output <- Boruta(Count ~ Hour + Humidity + SolarRad + Temp + Weekend + Visibility + WeekDay + WindSpeed + Rain + Snow + Month + Season + Holiday + Control1 + Control2,data=data, doTrace=3)
plot(boruta_output, cex.axis=.7, las=2, xlab="", main="Variable Importance")
data <- data %>%
dplyr::select(-c(Control1,Control2))
```
I risultati ottenuti ci permettono di concludere che tutte le variabili, seppur in percentuale diversa, sono importanti. Tra tutte, spicca "Hour", che risulta essere la più significativa, ma, al contempo, molto complessa da trattare.
Infatti potrebbe essere trattata sia come variabile dummy (che però comporterebbe l'introduzione di un numero di variabili troppo elevato) oppure come variabile numerica (perdendo però la sua natura ciclica).
Un metodo molto utilizzato in letteratura per contrastare questo fenomeno è l'utilizzo delle sinusoidi.
Per questo motivo, creiamo due nuove variabili, "sinHour" e "cosHour".
```{r}
data <- data %>%
mutate(sinHour = sin(2*pi*Hour/24),
cosHour = cos(2*pi*Hour/24))
```
# Clustering
## K-means
Prima di tutto, selezioniamo solo le variabili numeriche presenti nel dataset e scaliamo i dati (per fare in modo che la scala dei dati non influenzi il calcolo delle distanze).\
Notiamo che le variabili "sinHour" e "cosHour" non necessitano di essere scalate, dal momento che, per la loro natura, variano nell'intervallo (0,1).
```{r}
data_num <- scale(data[,c("Temp", "Humidity", "WindSpeed", "Visibility", "SolarRad")])
data_num <- data.frame(cbind(data_num),data$sinHour,data$cosHour)
```
Prima di implementare un KNN, è necessario scegliere il numero di k, ovvero numero dei gruppi (clusters). Per farlo utlizziamo due misure: la Sum of Squares (SSQ) e la silhouette.
**Metodo 1: SSQ**\
Per la "regola del gomito" scegliamo k = 4.
```{r}
SSQs <- NULL
kappas <- 2:10
set.seed(123)
for( k in kappas ) {
ssqs <- numeric()
for (rep in 1:10) {
km.res <- kmeans( data_num, centers=k )
ssqs <- c(ssqs, km.res$tot.withinss)
}
SSQs <- cbind(SSQs, ssqs)
}
avg <- apply(SSQs, 2, mean)
plot( kappas, avg, type="o", lwd=3, col="blue", main="Average SSQs for Different k" )
```
**Metodo 2: Silhouette**\
La silhouette individua 2 gruppi.
```{r}
sils <- numeric()
kappas <- 2:10
for(k in kappas) {
res <- kmeans(data_num, centers = k)
sil <- silhouette(res$cluster, dist(data_num))
mean_sil <- mean(sil[, 3])
sils <- c(sils, mean_sil)
}
plot(kappas, sils, type = "b", pch = 19, col = "blue", xlab = "Number of Clusters (k)", ylab = "Average Silhouette Width", main = "Average Silhouette Width for Different k")
abline(v = kappas[which.max(sils)], col = "red", lty = 2)
```
Le due metriche indichino due scelte diverse, li proviamo entrambi per potere fare il confronto.\
Dopo aver individuato i cluster, calcoliamo le medie per gruppo al fine di studiarne le peculiarità.
```{r}
set.seed(123)
k <- 2
res <- kmeans(data_num, centers = k, iter.max = 10000)
data$clust_KMEANS <- res$cluster
data %>%
group_by(clust_KMEANS) %>%
summarise(across(c(Count, SolarRad, Temp, Humidity, WindSpeed, Visibility, Rain, Snow), ~ mean(.)))
grafico <- data %>%
group_by(clust_KMEANS, Season) %>%
summarise(count = n()) %>%
ungroup() %>%
group_by(clust_KMEANS) %>%
mutate(percentage = count / sum(count) * 100)
grafico <- grafico %>%
arrange(clust_KMEANS, desc(Season)) %>%
mutate(ypos = cumsum(percentage) - 0.5 * percentage)
ggplot(grafico, aes(x = "", y = percentage, fill = Season)) +
geom_bar(stat = "identity", width = 1) +
coord_polar("y", start = 0) +
geom_label_repel(aes(label = paste0(round(percentage, 1), "%"), y = ypos),
fill = "white",
color = "black",
show.legend = FALSE,
box.padding = 0.3,
point.padding = 0.3,
segment.color = "black",
nudge_x = 0.8) +
labs(x = "Cluster", y = "Percentage", fill = "Season") +
theme_void() +
scale_fill_manual(values = c("brown2", "lightgreen", "yellow", "lightblue")) +
facet_wrap(~ clust_KMEANS, strip.position = "top") +
theme(strip.placement = "outside", strip.background = element_blank(),
strip.text = element_text(size = 12, face = "bold"))
```
Quando eseguiamo per k=2, vediamo dai centroidi che le variabili atmosferiche non sono ben distinte.\
Proviamo quindi a studiare l'orario.
```{r}
grafico <- data %>%
group_by(clust_KMEANS, Hour) %>%
summarise(count = n()) %>%
ungroup() %>%
group_by(clust_KMEANS) %>%
mutate(percentage = count / sum(count) * 100) %>%
arrange(clust_KMEANS, desc(Hour)) %>%
mutate(ypos = cumsum(percentage) - 0.5 * percentage)
ggplot(grafico, aes(x = "", y = percentage, fill = as.factor(Hour))) +
geom_bar(stat = "identity", width = 1) +
coord_polar("y", start = 0) +
labs(x = NULL, y = NULL, fill = NULL) +
theme_void() +
scale_fill_manual(values = c(rep("darkblue", 8), rep("red", 3), rep("yellow", 7), rep("red", 3), rep("darkblue", 3))) +
facet_wrap(~ clust_KMEANS, strip.position = "top") +
theme(strip.placement = "outside", strip.background = element_blank(),
strip.text = element_text(size = 12, face = "bold")) +
guides(fill = FALSE)
```
## Algoritmo gerarchico (bottom-up)
**Scelta del numero di gruppi**\
In questo caso abbiamo usato la silhouette media come metrica per la scelta del numero dei gruppi. Come in precedenza, eseguiamo sia per k=2 che k=4.
```{r}
distanze <- dist(data_num)
sils <- numeric()
kappas <- 2:10
for(k in kappas) {
res <- hclust(distanze, method="ward.D2")
cluster <- cutree(res, k=k)
sil <- silhouette(cluster, dist(data_num))
mean_sil <- mean(sil[, 3])
sils <- c(sils, mean_sil)
}
plot(kappas, sils, type = "b", pch = 19, col = "blue", xlab = "Number of Clusters (k)", ylab = "Average Silhouette Width", main = "Average Silhouette Width for Different k")
abline(v = kappas[which.max(sils)], col = "red", lty = 2)
```
NB: Abbiamo provato anche più metodi per l'aggregazione dei gruppi (single, complete e average linkage), ma i risultati migliori sono stati quelli ottenuti con il metodo di Ward.
**Clustering**
```{r}
h.res <- hclust( distanze, method="ward.D2" )
data$clust_HIER <- cutree(h.res, k=4)
data %>%
group_by(clust_HIER) %>%
summarise(mean(Count),mean(SolarRad),mean(Temp),mean(Humidity),mean(WindSpeed),
mean(Visibility),mean(Rain),mean(Snow))
grafico <- data %>%
group_by(clust_HIER, Season) %>%
summarise(count = n()) %>%
ungroup() %>%
group_by(clust_HIER) %>%
mutate(percentage = count / sum(count) * 100)
grafico <- grafico %>%
arrange(clust_HIER, desc(Season)) %>%
mutate(ypos = cumsum(percentage) - 0.5 * percentage)
ggplot(grafico, aes(x = "", y = percentage, fill = Season)) +
geom_bar(stat = "identity", width = 1) +
coord_polar("y", start = 0) +
geom_label_repel(aes(label = paste0(round(percentage, 1), "%"), y = ypos),
fill = "white",
color = "black",
show.legend = FALSE,
box.padding = 0.3,
point.padding = 0.3,
segment.color = "black",
nudge_x = 0.8) +
labs(x = "Cluster", y = "Percentage", fill = "Season") +
theme_void() +
scale_fill_manual(values = c("brown2", "lightgreen", "yellow", "lightblue")) +
facet_wrap(~ clust_HIER, strip.position = "top") +
theme(strip.placement = "outside", strip.background = element_blank(),
strip.text = element_text(size = 12, face = "bold"))
```
Proviamo ora a tenere conto anche delle variabili categoriche per la creazione dei gruppi.
## Partitioning Around Medoids
**Trasformazione dei dati e scelta del numero ottimale di gruppi\
**Per la scelta del numero di gruppi usiamo sempre la silhouette media, calcolata però sfruttando la distanza di Gower.
```{r}
catnum_data <- data %>%
dplyr::select(Temp, Humidity, WindSpeed, Visibility, SolarRad,
Rain_dummy, Snow_dummy, Season, sinHour, cosHour,
Month, WeekDay, Weekend) %>%
mutate(Rain_dummy = as.factor(Rain_dummy),
Snow_dummy = as.factor(Snow_dummy),
Season = as.factor(Season),
Month = as.factor(Month),
WeekDay = as.factor(WeekDay),
Weekend = as.factor(Weekend))
gower_dist <- daisy(catnum_data, metric = "gower")
sils <- numeric()
kappas <- 2:10
for(k in kappas) {
res <- pam(gower_dist, k = k)
cluster <- res$clustering
mean_sil <- mean(silhouette(cluster,gower_dist)[,3])
sils <- c(sils, mean_sil)
}
plot(kappas, sils, type = "b", pch = 19, col = "blue", xlab = "Number of Clusters (k)", ylab = "Average Silhouette Width", main = "Average Silhouette Width for Different k")
abline(v = kappas[which.max(sils)], col = "red", lty = 2)
```
Suggerisce k=5
```{r}
clustering_cat.num <- pam(gower_dist, k = 5)
data$clust_FAC.NUM <- clustering_cat.num$clustering
data %>%
group_by(clust_FAC.NUM) %>%
summarise(mean(Count),mean(SolarRad),mean(Temp),mean(Humidity),mean(WindSpeed),
mean(Visibility),mean(Rain),mean(Snow))
grafico <- data %>%
group_by(clust_FAC.NUM, Season) %>%
summarise(count = n()) %>%
ungroup() %>%
group_by(clust_FAC.NUM) %>%
mutate(percentage = count / sum(count) * 100)
grafico <- grafico %>%
arrange(clust_FAC.NUM, desc(Season)) %>%
mutate(ypos = cumsum(percentage) - 0.5 * percentage)
ggplot(grafico, aes(x = "", y = percentage, fill = Season)) +
geom_bar(stat = "identity", width = 1) +
coord_polar("y", start = 0) +
geom_label_repel(aes(label = paste0(round(percentage, 1), "%"), y = ypos),
fill = "white",
color = "black",
show.legend = FALSE,
box.padding = 0.3,
point.padding = 0.3,
segment.color = "black",
nudge_x = 0.8) +
labs(x = "Cluster", y = "Percentage", fill = "Season") +
theme_void() +
scale_fill_manual(values = c("brown2", "lightgreen", "yellow", "lightblue")) +
facet_wrap(~ clust_FAC.NUM, strip.position = "top") +
theme(strip.placement = "outside", strip.background = element_blank(),
strip.text = element_text(size = 12, face = "bold"))
```
```{r}
data <- data %>%
dplyr::select(-c(clust_KMEANS, clust_HIER, clust_FAC.NUM))
```
# Suddivisione del dataset in training e test
Suddividiamo ora il dataset in training e test set.
```{r}
set.seed(123)
ixs <- createDataPartition(data$Count,time=1,p=0.8)
trainset <- data[ixs$Resample1,]
testset <- data[-ixs$Resample1,]
```
Al fine di utilizzare le variabili categoriche nei successivi algoritmi, per ognuna creiamo tante dummy quante sono le sue modalità, utilizzando la tecnica del ***One-Hot Encoding***.
```{r}
dummies <- dummyVars(~ Season + Holiday + WeekDay + Weekend,
data = data)
one_hot_data <- predict(dummies, newdata = data) %>% as_tibble()
scaled_data <- data %>%
dplyr::select(Temp, Humidity, WindSpeed, Visibility, SolarRad, Rain, Snow) %>%
scale() %>%
as_tibble()
data_encoded <- data %>%
dplyr::select(Count, sinHour, cosHour) %>%
bind_cols(scaled_data, one_hot_data)
colnames(data_encoded) <- c("Count", "sinHour", "cosHour","Temp", "Humidity", "WindSpeed", "Visibility","SolarRad", "Rain", "Snow","SeasonAutumn", "SeasonSpring", "SeasonSummer", "SeasonWinter","HolidayHoliday", "HolidayNoHoliday","WeekDay1", "WeekDay2", "WeekDay3", "WeekDay4", "WeekDay5", "WeekDay6","WeekendWeekend", "WeekendWeekwork")
```
Infine, creiamo training e test anche per il dataset completo (cioè con le dummy trasformate).
```{r}
trainset_encoded <- data_encoded[ixs$Resample1,]
testset_encoded <- data_encoded[-ixs$Resample1,]
```
# Regressione
Creiamo delle funzioni per calcolare le metriche di bontà della regressione: errore quadratico medio (RMSE), errore assoluto medio (MAE), coefficiente di determinazione (R2) e errore assoluto medio percentuale (MAPE).
```{r}
rmse <- function(pred,actual) {sqrt(mean((pred - actual)^2))}
mae <- function(pred,actual) {mean(abs(pred - actual))}
r_squared <- function(pred,actual) {
rss <- sum((pred - actual)^2)
tss <- sum((actual - mean(actual))^2)
1 - (rss / tss)
}
mape <- function(pred,actual) {mean(abs((actual - pred) / actual)) * 100}
msee <- function(pred,actual) {mean((pred - actual)^2)}
```
**Grafici**
1. *Scatterplot: valori reali vs valori previsti*
Se la previsione fosse perfetta i punti dovrebbero disporsi esattamente lungo la bisettrice; dunque, più i punti sono vicini ad essa (linea rossa), migliori sono le previsioni del modello.
2. *Scatterplot: residui vs valori previsti*
Questo grafico mostra i residui (le differenze tra le bici noleggiate previste ed effettive) rispetto ai valori previsti. Un modello performante avrà residui distribuiti casualmente intorno allo zero (la linea tratteggiata rossa).
### KNN
**Fase di tuning**
L'unico parametro da ottimizzare nel caso del KNN è k, ovvero il numero di "vicini" da considerare per fare la previsione.
```{r}
set.seed(123)
par.set <- makeParamSet(
makeIntegerParam("k", lower = 1, upper = 50),
makeIntegerParam("distance", lower = 1, upper = 2)
)
ctrl = makeMBOControl()
ctrl = setMBOControlTermination(ctrl, iters = 15)
tune.ctrl = makeTuneControlMBO(mbo.control = ctrl)
colnames(trainset_encoded) <- make.names(colnames(trainset_encoded))
task <- makeRegrTask(data=trainset_encoded,target="Count")
run_knn <- tuneParams(makeLearner("regr.kknn"), task, cv3, measures=list(mse),par.set = par.set, control = tune.ctrl,show.info = F)
```
**Fase di train e test**
```{r}
set.seed(123)
model_knn <- kknn(formula = Count ~ ., train = trainset_encoded, test = testset_encoded, k = run_knn$x$k,distance=run_knn$x$distance)
predictions <- model_knn$fitted.values
actual_values <- testset_encoded$Count
(knn_results <- data.frame(RMSE = rmse(predictions,actual_values), MAE = mae(predictions,actual_values), R_squared = r_squared(predictions,actual_values), MAPE = mape(predictions,actual_values)))
rmse_valid_knn <- sqrt(run_knn$mbo.result$y); rmse_valid_knn
```
**Grafici**
Il KNN è un modello molto semplice, dunque non ci aspettiamo una performance ottimale, ma mediocre.
```{r}
tot_values <- data.frame(cbind(predictions, actual_values))
ggplot(tot_values, aes(x=predictions, y=actual_values)) +
geom_point(col="deepskyblue") +
geom_abline(intercept = 0, slope = 1, col = "red") +
labs(title = "Actual vs Predicted Plot",
x = "Predicted",
y = "Actual") +
theme_minimal()
residuals <- tot_values$actual_values - tot_values$predictions
tot_values <- data.frame(tot_values, residuals)
ggplot(tot_values, aes(x=predictions, y=residuals)) +
geom_point(col="deepskyblue") +
geom_abline(intercept = 0, slope = 0, col = "red") +
labs(title = "Residuals",
x = "Predicted Count",
y = "Residual Plot") +
theme_minimal()
```
### Support Vector Machine
NB: per garantire al lettore un'esecuzione semi-veloce del codice, riportiamo solo il tuning con kernel radiale, che dopo svariate prove risulta essere sempre il prescelto.
Di conseguenza, gli iperparametri da ottimizzare sono il parametro del kernel radiale (gamma) e l'iperparametro di regolarizzazione (cost).
**Fase di tuning**
```{r}
set.seed(123)
par.set = makeParamSet(
makeDiscreteParam( "kernel", values=c("radial") ),
makeNumericParam( "cost", lower=1.5, upper=1.7, trafo=function(x) 10^x ),
makeNumericParam( "gamma", lower=-2, upper=-0.8, trafo=function(x) 10^x)
)
ctrl <- makeMBOControl()
ctrl <- setMBOControlTermination(ctrl, iters = 15)
tune_ctrl <- makeTuneControlMBO(mbo.control = ctrl)
task <- makeRegrTask(data=trainset_encoded, target="Count")
run_svm <- tuneParams(makeLearner("regr.svm"), task, cv3, measures = list(mse),par.set = par.set, control = tune_ctrl, show.info = F)
```
**Fase di train e test**
```{r}
model_svm <- svm(formula=Count ~., data=trainset_encoded, scale=F,
type = "eps-regression", cost=run_svm$x$cost,
kernel="radial",gamma=run_svm$x$gamma)
predictions <- predict(model_svm, newdata = testset_encoded)
actual_values <- testset_encoded$Count
(svm_results <- data.frame(RMSE = rmse(predictions,actual_values), MAE = mae(predictions,actual_values), R_squared = r_squared(predictions,actual_values), MAPE = mape(predictions,actual_values)))
rmse_valid_svm <- sqrt(run_svm$mbo.result$y) ; rmse_valid_svm
```
**Grafici**
Già dalla lettura delle metriche, si nota che l'SVM non riesce a cogliere il modello sottostante i dati e i grafici confermano questa affermazione.
```{r}
tot_values <- data.frame(cbind(predictions, actual_values))
ggplot(tot_values, aes(x=predictions, y=actual_values)) +
geom_point(col="deepskyblue") +
geom_abline(intercept = 0, slope = 1, col = "red") +
labs(title = "Actual vs Predicted Plot",
x = "Predicted",
y = "Actual") +
theme_minimal()
residuals <- tot_values$actual_values - tot_values$predictions
tot_values <- data.frame(tot_values, residuals)
ggplot(tot_values, aes(x=predictions, y=residuals)) +
geom_point(col="deepskyblue") +
geom_abline(intercept = 0, slope = 0, col = "red") +
labs(title = "Residuals",
x = "Predicted Count",
y = "Residual Plot") +
theme_minimal()
```
### Random Forest
**Fase di tuning**
Nel caso delle Random Forest, gli iperparametri da ottimizzare sono il numero di alberi (ntrees) e il numero di variabili selezionate casualmente come candidati per ogni divisione nei nodi degli alberi decisionali (mtry).
```{r}
set.seed(123)
par.set_rf <- makeParamSet(
makeIntegerParam("ntree", lower = 100, upper = 500),
makeIntegerParam("mtry", lower = 1, upper = 20)
)
ctrl_rf <- makeMBOControl()
ctrl_rf <- setMBOControlTermination(ctrl_rf, iters = 15)
tune_ctrl_rf <- makeTuneControlMBO(mbo.control = ctrl_rf)
colnames(trainset_encoded) <- make.names(colnames(trainset_encoded))
task_rf <- makeRegrTask(data = trainset_encoded, target = "Count")
run_rf <- tuneParams(makeLearner("regr.randomForest"), task_rf, cv3, measures = list(mse),par.set = par.set_rf, control = tune_ctrl_rf, show.info = F)
```
**Fase di train e test**
```{r}
rf_model <- randomForest(Count ~ ., data = trainset_encoded,
ntree = run_rf$x$ntree,
mtry = run_rf$x$mtry)
colnames(testset_encoded) <- make.names(colnames(testset_encoded))
predictions <- predict(rf_model, testset_encoded)
actual_values <- testset_encoded$Count
(rf_results <- data.frame(RMSE = rmse(predictions,actual_values), MAE = mae(predictions,actual_values), R_squared = r_squared(predictions,actual_values), MAPE = mape(predictions,actual_values)))
rmse_valid_rf <- sqrt(run_rf$mbo.result$y) ; rmse_valid_rf
```
**Grafici**
Le metriche del RF risultano, fino ad ora, le migliori ottenute; infatti, anche la visualizzazione grafica conferma il risultato numerico. Notiamo infatti un ottimo adattamento dei punti alla bisettrice (solo alcuni punti risultano previsti male, molti meno rispetto agli algoritmi precedenti) ed anche i residui si dispongono vicino allo 0.
```{r}
tot_values <- data.frame(cbind(predictions, actual_values))
ggplot(tot_values, aes(x=predictions, y=actual_values)) +
geom_point(col="deepskyblue") +
geom_abline(intercept = 0, slope = 1, col = "red") +
labs(title = "Actual vs Predicted Plot",
x = "Predicted",
y = "Actual") +
theme_minimal()
residuals <- tot_values$actual_values - tot_values$predictions
tot_values <- data.frame(tot_values, residuals)
ggplot(tot_values, aes(x=predictions, y=residuals)) +
geom_point(col="deepskyblue") +
geom_abline(intercept = 0, slope = 0, col = "red") +
labs(title = "Residuals",
x = "Predicted Count",
y = "Residual Plot") +
theme_minimal()
```
### Reti neurali (1 hidden layer)
**Fase di tuning**
Per queste NN (rete a singolo strato con back propagation) gli iperparametri da ottimizzare sono: il numero di neuroni dell'unico hidden layer (size), il learning rate (decay) e il numero massimo di iterazioni (maxit).
```{r}
set.seed(123)
par.set_nn <- makeParamSet(
makeIntegerParam("size", lower = 1, upper = 20),
makeNumericParam("decay", lower = 0.01, upper = 0.1),
makeIntegerParam("maxit", lower = 100, upper = 500)
)
ctrl_nn <- makeMBOControl()
ctrl_nn <- setMBOControlTermination(ctrl_nn, iters = 15)
tune_ctrl_nn <- makeTuneControlMBO(mbo.control = ctrl_nn)
task_nn <- makeRegrTask(data = trainset_encoded, target = "Count")
run_nn <- tuneParams(makeLearner("regr.nnet"), task_nn, cv3, measures = list(mse),par.set = par.set_nn, control = tune_ctrl_nn, show.info = F)
```
**Fase di train e test**
```{r}
nn0 <- nnet(Count ~ ., data = trainset_encoded,
size=run_nn$x$size, linout=TRUE, skip=TRUE, MaxNWts=10000, trace=FALSE,maxit=run_nn$x$maxit,decay = run_nn$x$decay)
colnames(testset_encoded) <- make.names(colnames(testset_encoded))
predictions <- predict(nn0, testset_encoded)
actual_values <- testset_encoded$Count
(nn_results <- data.frame(RMSE = rmse(predictions,actual_values), MAE = mae(predictions,actual_values), R_squared = r_squared(predictions,actual_values), MAPE = mape(predictions,actual_values)))
rmse_valid_nn <- sqrt(run_nn$mbo.result$y) ; rmse_valid_nn
```
**Grafici**
Le reti neurali con un singolo hidden layer non producono buoni risultati.
```{r}
tot_values <- data.frame(cbind(predictions, actual_values))
colnames(tot_values) <- c("predictions","actual_values")
ggplot(tot_values, aes(x=predictions, y=actual_values)) +
geom_point(col="deepskyblue") +
geom_abline(intercept = 0, slope = 1, col = "red") +
labs(title = "Actual vs Predicted Plot",
x = "Predicted",
y = "Actual") +
theme_minimal()
residuals <- tot_values$actual_values - tot_values$predictions
tot_values <- data.frame(tot_values, residuals)
ggplot(tot_values, aes(x=predictions, y=residuals)) +
geom_point(col="deepskyblue") +
geom_abline(intercept = 0, slope = 0, col = "red") +
labs(title = "Residuals",
x = "Predicted Count",
y = "Residual Plot") +
theme_minimal()
```
### XGBoost
**Fase di tuning**
Gli iperparametri da ottimizzare sono: il learning rate (eta), il numero massimo di nodi a partire dal nodo radice fino al suo nodo foglia più profondo (max_depth), percentuale di dati utilizzata per la costruzione dell'albero (subsample), percentuale di features utilizzate per la costruzione dell'albero (colsample_bytree), numero di iterazioni di boosting/alberi (nrounds).
```{r}
set.seed(123)
par.set <- makeParamSet(
makeNumericParam("eta", lower = 0.01, upper = 0.3),
makeIntegerParam("max_depth", lower = 3, upper = 10),
makeNumericParam("subsample", lower = 0.5, upper = 1),
makeNumericParam("colsample_bytree", lower = 0.5, upper = 1),
makeIntegerParam("nrounds", lower = 50, upper = 500),
makeNumericParam("gamma", lower = 0, upper = 5),
makeNumericParam("lambda", lower = 0, upper = 2),
makeNumericParam("alpha", lower = 0, upper = 2),
makeNumericParam("min_child_weight", lower = 1, upper = 10)
)
ctrl <- makeMBOControl()
ctrl <- setMBOControlTermination(ctrl, iters = 15)
ctrl <- setMBOControlInfill(ctrl, crit = makeMBOInfillCritCB())
tune.ctrl <- makeTuneControlMBO(mbo.control = ctrl)
task <- makeRegrTask(data = trainset_encoded, target = "Count")
run_xgb <- tuneParams(
makeLearner("regr.xgboost"),
task,
cv3,
measures = mse,
par.set = par.set,
control = tune.ctrl,
show.info = F
)
bestpar <- run_xgb$x
params <- list(
eta = bestpar$eta,
max_depth = bestpar$max_depth,
subsample = bestpar$subsample,
colsample_bytree = bestpar$colsample_bytree,
gamma = bestpar$gamma,
lambda = bestpar$lambda,
alpha = bestpar$alpha,
min_child_weight = bestpar$min_child_weight,
objective = "reg:squarederror",
eval_metric = "rmse"
)
nrounds <- bestpar$nrounds
```
**Fase di train e test**
```{r}
train_data <- as.matrix(trainset_encoded %>% dplyr::select(-Count))
train_label <- trainset_encoded$Count
dtrain <- xgb.DMatrix(data = train_data, label = train_label)
test_data <- as.matrix(testset_encoded %>% dplyr::select(-Count))
test_label <- testset_encoded$Count
dtest <- xgb.DMatrix(data = test_data, label = test_label)
model_xgb <- xgboost(
params = params,
data = dtrain,
nrounds = nrounds,
verbose = 1
)
pred_xgboost <- predict(model_xgb, dtest)
(xgb_results <- data.frame(RMSE = rmse(pred_xgboost,test_label), MAE = mae(pred_xgboost,test_label), R_squared = r_squared(pred_xgboost,test_label), MAPE = mape(pred_xgboost,test_label)))
rmse_valid_xgb <- sqrt(run_xgb$mbo.result$y) ; rmse_valid_xgb
```
**Grafici e Commenti**
Xgboost migliora leggermente i risultati ottenuti con le RF, infatti i 2 metodi hanno un' idea base simile, ma che poi viene sviluppata diversamente. Entrambi utilizzano gli alberi decisionali, ma RF costruisce alberi indipendenti in parallelo usando il bagging e aggrega le previsioni di tutti gli alberi, mentre XGB costruisce alberi sequenzialmente usando il boosting gradientale e combina le previsioni aggiungendo i nuovi alberi per correggere gli errori degli alberi precedenti (includendo inoltre una regolarizzazione per penalizzare la complessità del modello)
```{r}
tot_values <- data.frame(cbind(pred_xgboost, test_label))
colnames(tot_values) <- c("predictions","actual_values")
ggplot(tot_values, aes(x=predictions, y=actual_values)) +
geom_point(col="deepskyblue") +
geom_abline(intercept = 0, slope = 1, col = "red") +
labs(title = "Actual vs Predicted Plot",
x = "Predicted",
y = "Actual") +
theme_minimal()
residuals <- tot_values$actual_values - tot_values$predictions
tot_values <- data.frame(tot_values, residuals)
ggplot(tot_values, aes(x=predictions, y=residuals)) +
geom_point(col="deepskyblue") +
geom_abline(intercept = 0, slope = 0, col = "red") +
labs(title = "Residuals",
x = "Predicted Count",
y = "Residual Plot") +
theme_minimal()
```
### Confronto
Confrontiamo gli algoritmi tramite RMSE, MAE e MAPE.
```{r}
results <- bind_rows(knn_results,rf_results,svm_results,nn_results,xgb_results)
rownames(results) <- NULL
results <- cbind(algorithm=c("KNN","RF","SVM","NN","XGB"),results)
results
results_long <- results %>%
dplyr::select(-R_squared) %>%
pivot_longer(cols = c(RMSE, MAE, MAPE), names_to = "Indice", values_to = "Valore")
results_long$Indice <-factor(results_long$Indice, levels = c("RMSE","MAE","MAPE"))
ggplot(results_long, aes(x = Indice, y = Valore, color = algorithm, group = algorithm)) +
geom_point(size = 4) +
geom_line(size = 2) +
labs(x = "Indice", y = "Valore", color = "Algoritmo") +
theme_minimal() +
theme(axis.text.x = element_text(angle = 45, hjust = 1)) +
scale_color_manual(values = c("KNN" = "deepskyblue", "RF" = "forestgreen", "SVM" = "darkblue","NN"="orange","XGB"="red2"))
```
# Classificazione
Per prima cosa definiamo tre funzioni utili alla valutazione delle performance di ogni modello.\
Inoltre, definiamo un'ulteriore funzione che consenta di visualizzare al meglio la matrice di confusione.
```{r}
accuracy <- function(pred,actual) {
sum(pred == actual) / length(pred)
}
gini <- function(pred,actual) {
gini <- 0
cluster_j <- unique(pred)
for (cluster in cluster_j) {
etichette_nel_cluster <- actual[pred == cluster]
freq_etichette <- table(etichette_nel_cluster)
gini_cluster <- 1 - sum((freq_etichette / sum(freq_etichette))^2)
gini <- gini + gini_cluster * length(etichette_nel_cluster) / length(actual)
}
return(gini)