-
Notifications
You must be signed in to change notification settings - Fork 0
/
ESAME FONDAMENTI.Rmd
1193 lines (900 loc) · 40.1 KB
/
ESAME FONDAMENTI.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: "Analisi della MLS DA 2000 A 2022"
author: "WILLY DJANGANG"
date: "2024-01-28"
output: html_document
---
```{r setup, include=FALSE}
knitr::opts_chunk$set(echo = TRUE)
```
## R Markdown
This is an R Markdown document. Markdown is a simple formatting syntax for authoring HTML, PDF, and MS Word documents. For more details on using R Markdown see <http://rmarkdown.rstudio.com>.
When you click the **Knit** button a document will be generated that includes both content as well as the output of any embedded R code chunks within the document. You can embed an R code chunk like this:
```{r}
library(ggplot2)
library(ggplotify)
library(plotly)
library(extrafont)
library(tidyverse)
library(ggimage)
library(magick)
library(gridGraphics)
library(curl)
library(ggthemes)
library(gapminder)
library(httr)
```
## Including Plots
You can also embed plots, for example:
```{r}
"Evoluzione del Numero di Partecipanti nelle Stagioni della MLS"
mls_standings <- read.csv("W:/FONDAMENTI DEI DATI/mls standings/mls_standings.csv")
View(mls_standings)
numero_squadre_per_stagionel <- mls_standings %>%
group_by(Season) %>%
summarize(NumeroSquadre = n_distinct(Team))
barplot_squadre_per_stagionel <- ggplot(numero_squadre_per_stagionel, aes(x = Season, y = NumeroSquadre, fill = Season)) +
geom_bar(stat = "identity") +
labs(title = "Andamento del Numero di Squadre per Stagione nella Major League Soccer (MLS)",
x = "Stagione", y = "Numero di Squadre") +
theme_fivethirtyeight()
# Visualizza il barplot
print(barplot_squadre_per_stagionel)
```
```{r}
# Calcola il coefficiente di correlazione di Pearson
library(tidyverse)
numero_squadre_per_stagionel <- mls_standings %>%
group_by(Season) %>%
summarize(NumeroSquadre = n_distinct(Team))
correlazione <- cor(numero_squadre_per_stagionel$Season, numero_squadre_per_stagionel$NumeroSquadre)
# Visualizza il grafico di dispersione o a linee
# Filtra i NA nel dataframe
#numero_squadre_per_stagione <- numero_squadre_per_stagionel[complete.cases(numero_squadre_per_stagione), ]
numero_squadre_per_stagioneo <- na.omit(numero_squadre_per_stagionel)
# Calcola il coefficiente di correlazione di Pearson
correlazione <- cor(numero_squadre_per_stagionel$Season, numero_squadre_per_stagionel$NumeroSquadre, use = "complete.obs")
# Visualizza il grafico di dispersione o a linee
REGRESSIONE_STAGIONE_TEAM = ggplot(numero_squadre_per_stagionel, aes(x = Season, y = NumeroSquadre)) +
geom_point() +
geom_smooth(method = "lm", se = FALSE) +
labs(title = "Correlazione tra Stagione e Numero di Squadre",
x = "Stagione", y = "Numero di Squadre") +
theme_minimal()
# Stampa il coefficiente di correlazione
t = print(paste("Coefficiente di correlazione di Pearson:", round(correlazione, 3)))
# Calcola il coefficiente di correlazione di Pearson
#correlazione <- cor(numero_squadre_per_stagione$Season, numero_squadre_per_stagione$NumeroSquadre)
# Visualizza il grafico di dispersione o a linee
# Filtra i NA nel dataframe
#numero_squadre_per_stagionel <- numero_squadre_per_stagione[complete.cases(numero_squadre_per_stagione), ]
# Calcola il coefficiente di correlazione di Pearson
correlazionel <- cor(numero_squadre_per_stagioneo$Season, numero_squadre_per_stagioneo$NumeroSquadre, use = "complete.obs")
# Visualizza il grafico di dispersione o a linee
REGRESSIONE_STAGIONE_TEAMlo = ggplot(numero_squadre_per_stagioneo, aes(x = Season, y = NumeroSquadre)) +
geom_point() +
geom_smooth(method = "lm", se = FALSE) +
labs(title = "Correlazione tra Stagione e Numero di Squadre",
x = "Stagione", y = "Numero di Squadre") +
theme_minimal()
# Stampa il coefficiente di correlazione
t = print(paste("Coefficiente di correlazione di Pearson:", round(correlazionel, 3)))
```
```{r}
# Supponendo che tu abbia una variabile di regressione chiamata 'Season' nel tuo dataset
modello_reg <- lm(NumeroSquadre ~ Season, data = numero_squadre_per_stagioneo)
# Crea un dataframe con le stagioni desiderate
predizioni_df <- data.frame(Season = c(2025, 2026,2027))
# Prevedi il numero di squadre usando il modello
predizioni_df$NumeroSquadre_Predette <- predict(modello_reg, newdata = predizioni_df)
# Visualizza le predizioni
print(predizioni_df)
```
Note that the `echo = FALSE` parameter was added to the code chunk to prevent printing of the R code that generated the plot.
```{r}
#Seleziona le colonne rilevanti da mls_st
mls_s = numero_squadre_per_stagionel <- mls_standings %>%
group_by(Season) %>%
summarize(NumeroSquadre = n_distinct(Team))
dati_clusteringl <- numero_squadre_per_stagioneo[, c("Season", "NumeroSquadre")]
# Utilizza il k-means clustering
set.seed(123) # Per rendere i risultati riproducibili
kmeans_modelc <- kmeans(dati_clusteringl, centers = 3) # Specifica il numero di cluster desiderati
set.seed(123) # Per rendere i risultati riproducibili
kmeans_modelco <- kmeans(mls_s, centers = 3) # Specifica il numero di cluster desiderati
# Aggiungi le informazioni di clustering al dataframe originale
dati_clusteringl$Cluster <- as.factor(kmeans_modelc$cluster)
# Visualizza il risultato del clustering
cluster_STAGIONElo <- ggplot(dati_clusteringl, aes(x = Season, y = NumeroSquadre, color = Cluster)) +
geom_point() +
geom_text(aes(label = as.character(Season)), vjust = -0.5, position = position_dodge(0.9), size = 3) +
labs(title = "Clustering delle Stagioni in Base al Numero di Squadre",
x = "Stagione", y = "Numero di Squadre") +
theme_fivethirtyeight()
cluster_STAGIONElo
```
```{r}
library(highcharter)
# Seleziona le tuple con stagione da 2000 a 2008
subset_2000_2008p <- filter(mls_standings, Season >= 2000 & Season <= 2008)
#subset_2000_2008pl <- filter(mls_standings, Season <= 2000 & Season <= 2008)
# Seleziona le tuple con stagione da 2009 a 2016
subset_2009_2016p <- filter(mls_standings, Season >= 2009 & Season <= 2016)
#SUBS <- mls_standings %>%
# filter(mls_standings$Team == "MIA")
# Seleziona le tuple con stagione da 2017 a 2020
subset_2017_2022p <- filter(mls_standings, Season >= 2017 & Season <= 2022)
observ = mls_standings %>%
ggplot(aes(x = Team,
y = Pts,
size = W,
color = GF))+
geom_point()+
facet_wrap(mls_standings$Season)+
labs(title = "Andamendo delle squadre basati dui punti gruppati dai cluster annni",
x = "Punti di Ogni Team",
y = "Squadra")
highchart_chart_2000_2008p <- highchart() %>%
hc_chart(type = "scatter") %>%
hc_title(text = "Andamento delle squadre 2000-2008") %>%
hc_xAxis(categories = subset_2000_2008p$Team) %>%
hc_yAxis(title = list(text = "Punti di ogni Team")) %>%
hc_add_series(
data = subset_2000_2008p,
hcaes(x = Team, y = Pts, size = W, color = GF),
type = "scatter",
name = "Punti"
) %>%
hc_tooltip(pointFormat = '<b>{point.Team}</b><br>Punti: {point.y}<br>Stagione: {point.Season}<br>Posizione: {point.Pos} <br>GOAL SEGNATI: {point.GF} <br>Partite vinte: {point.W}')
# Creare e visualizzare i grafici
observe1p <- subset_2000_2008p %>%
ggplot(aes(x = Team, y = Pts, size = W, color = GF)) +
geom_point() +
labs(title = "Andamento delle squadre 2000-2008",
x = "Punti di ogni Team",
y = "Squadra") +
scale_color_gradient2_tableau() +
theme_fivethirtyeight()
observe2p <- subset_2009_2016p %>%
ggplot(aes(x = Team, y = Pts, size = W, color = GF)) +
geom_point() +
labs(title = "Andamento delle squadre 2009-2016",
x = "Punti di ogni Team",
y = "Squadra") +
scale_color_gradient2_tableau() +
theme_fivethirtyeight()
# Convertire il grafico ggplot in highchart
highchart_chart_2009_2016p <- highchart() %>%
hc_chart(type = "scatter") %>%
hc_title(text = "Andamento delle squadre 2000-2008") %>%
hc_xAxis(categories = subset_2009_2016p$Team) %>%
hc_yAxis(title = list(text = "Punti di ogni Team")) %>%
hc_add_series(
data = subset_2009_2016p,
hcaes(x = Team, y = Pts, size = W, color = GF),
type = "scatter",
name = "Punti"
) %>%
hc_tooltip(pointFormat = '<b>{point.Team}</b><br>Punti: {point.y}<br>Stagione: {point.Season}<br>Città: {point.city} <br>Partite vinte: {point.W}') %>%
hc_legend(enabled = TRUE) %>%
hc_credits(enabled = TRUE, text = 'Crediti: @wildjang') %>%
hc_theme(theme = "darkunica")
library(plotly)
observe2pp <- subset_2009_2016p %>%
plot_ly(x = ~Team, y = ~Pts, size = ~W, color = ~GF, text = ~paste("Stagione: ", Season, "<br>Squadra: ", Team, "<br> Partita vinta ", W)) %>%
add_markers() %>%
layout(
title = "Andamento delle squadre 2009-2016",
xaxis = list(title = "Punti di ogni Team"),
yaxis = list(title = "Squadra"),
showlegend = FALSE
)
# Convertire il grafico ggplot in highchart
highchart_chart_2009_2016p <- highchart() %>%
hc_chart(type = "scatter") %>%
hc_title(text = "Andamento delle squadre 2009-2016") %>%
hc_xAxis(categories = subset_2009_2016p$Team) %>%
hc_yAxis(title = list(text = "Punti di ogni Team")) %>%
hc_add_series(
data = subset_2009_2016p,
hcaes(x = Team, y = Pts, size = W, color = GF),
type = "scatter",
name = "Punti"
) %>%
hc_tooltip(pointFormat = '<b>{point.Team}</b><br>Punti: {point.y}<br>Stagione: {point.Season}<br>Città: {point.city} <br>Partite vinte: {point.W}') %>%
hc_legend(enabled = TRUE) %>%
hc_credits(enabled = TRUE, text = 'Crediti: @wildjang') %>%
hc_theme(theme = "darkunica")
library(plotly)
observe2pp <- subset_2009_2016p %>%
plot_ly(x = ~Team, y = ~Pts, size = ~W, color = ~GF, text = ~paste("Stagione: ", Season, "<br>Squadra: ", Team, "<br> Partita vinta ", W)) %>%
add_markers() %>%
layout(
title = "Andamento delle squadre 2009-2016",
xaxis = list(title = "Punti di ogni Team"),
yaxis = list(title = "Squadra"),
showlegend = FALSE
)
library(readxl)
mls_mod <- read_excel("W:/FONDAMENTI DEI DATI/mls mod.xlsx")
View(mls_mod)
observe3p <- subset_2017_2022p %>%
ggplot(aes(x = Team, y = Pts, size = W, color = GF)) +
geom_point() +
labs(title = "Andamento delle squadre 2017-2022",
x = "Punti di ogni Team",
y = "Squadra") +
#scale_color_gradient2(colors = rainbow(10))
scale_color_gradient2_tableau()+
theme_minimal()
# Convertire il grafico ggplot in highchart
highchart_chart_2017_2022 <- highchart() %>%
hc_chart(type = "scatter") %>%
hc_title(text = "Andamento delle squadre 2017-2022") %>%
hc_xAxis(categories = subset_2017_2022p$Team) %>%
hc_yAxis(title = list(text = "Punti di ogni Team")) %>%
hc_add_series(
data = subset_2017_2022p,
hcaes(x = Team, y = Pts, size = W, color = GF),
type = "scatter",
name = "Punti"
) %>%
hc_tooltip(pointFormat = '<b>{point.Team}</b><br>Punti: {point.y}<br>Stagione: {point.Season}<br>Città: {point.city}') %>%
hc_legend(enabled = TRUE) %>%
hc_credits(enabled = TRUE, text = 'Crediti: @wildjang') %>%
hc_theme(theme = "darkunica")
# Sommario riassuntivo delle squadre
library(tidyverse)
summary_datalp <- mls_standings %>%
group_by(Team, Season) %>%
summarise(
MediaPunti = mean(Pts),
MediaPosizione = mean(Pos),
MediaPartiteVinte = mean(W),
MediaGoalSegnati = mean(GF)
# Aggiungi altre colonne se necessario
) %>%
group_by(Team) %>%
summarise(
MediaPunti = mean(MediaPunti),
MediaPosizione = mean(MediaPosizione),
MediaPartiteVinte = mean(MediaPartiteVinte),
MediaGoalSegnati = mean(MediaGoalSegnati)
# Aggiungi altre colonne se necessario
)
# Calcola il numero di volte che ogni squadra ha trascorso nella MLS
#volte_ml <- table(mls_stt$Team)
# Calcola il numero di volte che ogni squadra ha trascorso nella MLS
volte_mls <- table(mls_standings$Team)
# Creare la colonna VolteMLS in summary_data
summary_datalp <- left_join(summary_datalp, data.frame(Team = names(volte_mls), VolteMLS = as.numeric(volte_mls)), by = "Team")
# Funzione per calcolare la media basata sul numero di volte
media1 <- function(x, weights) {
sum(x * weights) / sum(weights)
}
# Seleziona le colonne di interesse
colonne_interesse <- c("Pts", "Pos", "W", "GF")
summary_datalolp <- mls_standings %>%
group_by(Team, Season) %>%
summarise(across(all_of(colonne_interesse), mean)) %>%
group_by(Team) %>%
summarise(
Pts = max(Pts), # Calcola il massimo per la colonna "Pts"
Season_max_Pts = Season[which.max(Pts)], # Aggiungi la colonna "Season" corrispondente al massimo punteggio
across(all_of(colonne_interesse[-which(colonne_interesse == "Pts")]), ~ media1(., length(unique(Season)))),
VolteMLS = sum(length(unique(Season))) # Somma totale delle partecipazioni
)
mls_st <- merge(mls_standings, mls_mod, by = "Team", all.x = TRUE, all.y = TRUE)
mls_st <- na.omit(mls_st)
# Funzione per calcolare la media basata sul numero di volte
media1 <- function(x, weights) {
sum(x * weights) / sum(weights)
}
# Seleziona le colonne di interesse
colonne_interesse <- c("Pts", "Pos", "W", "GF")
# Applica la funzione media1 alle colonne di interesse
summary_datalo <- mls_st %>%
group_by(Team, Season) %>%
summarise(across(all_of(colonne_interesse), mean)) %>%
group_by(Team) %>%
summarise(
across(all_of(colonne_interesse), ~ media1(., length(unique(Season)))),
VolteMLS = sum(length(unique(Season))) # Somma totale delle partecipazioni
)
library(ggplot2)
# Creazione del grafico a barre da modificare
grafico_riassuntivo <- ggplot(summary_datalo, aes(x = Team, y = Pts)) +
geom_bar(stat = "identity", fill = "skyblue", width = 0.7) +
labs(title = "Riassunto Punti Massimi per Squadra",
x = "Squadra",
y = "Punteggio Massimo") +
geom_text(aes(label = GF), vjust = -0.5) + # Aggiunge le etichette dei valori sopra le barre
theme_minimal() # Scegli un tema di sfondo per il grafico
# Visualizzazione del grafico
print(grafico_riassuntivo)
grafico_riassuntivol <- ggplot(summary_datalolp, aes(x = Team, y = Pts, size = VolteMLS, color = as.factor(Season_max_Pts))) +
geom_point(alpha = 0.4) +
labs(title = "Riassunto Punti Massimi per Squadra",
x = "Squadra",
y = "Punteggio Massimo",
size = "Partite Vinte Totali") +
scale_size_continuous(range = c(5, 15)) + # Imposta la scala per la size delle palline
theme_minimal() + # Scegli un tema di sfondo per il grafico
theme(axis.text.x = element_text(angle = 45, hjust = 1)) # Ruota le etichette sull'asse x per una migliore leggibilità
# Visualizzazione del grafico
grafico_summary_datalopp <- ggplot(summary_datalolp, aes(x = Team, y = Pts, size = W, color = Season_max_Pts)) +
geom_point() +
facet_wrap(~Season_max_Pts, scales = "free_y", ncol = 1) + # Utilizza scales = "free_y" per facilitare la visualizzazione
labs(title = "Andamento delle Squadre") +
scale_color_gradient(low = "blue", high = "red") + # Personalizza la scala dei colori
scale_size_continuous(range = c(3, 10)) + # Personalizza la scala delle dimensioni
theme_minimal()
library(gganimate)
library(transformr)
library(gifski)
# Funzione per creare l'animazione
crea_animazione <- function(subset_df, titolo) {
anim <- ggplot(subset_df, aes(x = Pts, y = GF, color = Team, label = Team)) +
geom_point() +
geom_text(aes(label = Team), hjust = 1.2, vjust = 1.2, size = 3) + # Aggiungi etichette di testo per i nomi delle squadre
labs(title = titolo,
x = "Punti",
y = "Goal Segnati") +
transition_states(Season, transition_length = 2, state_length = 1) +
enter_fade() +
exit_fade() +
ease_aes('linear') +
shadow_mark() # Aggiungi un frame per visualizzare la stagione corrente
return(anim)
}
# Suddividi il dataframe in base agli intervalli di stagioni
subset_2000_2008 <- subset(mls_stt, Season >= 2000 & Season <= 2008)
subset_2009_2016 <- subset(mls_stt, Season >= 2009 & Season <= 2016)
subset_2017_2020 <- subset(mls_stt, Season >= 2017 & Season <= 2020)
# Crea le animazioni per ciascun subset
animazione_2000_2008 <- crea_animazione(subset_2000_2008, "2000-2008")
animazione_2009_2016 <- crea_animazione(subset_2009_2016, "2009-2016")
animazione_2017_2020 <- crea_animazione(subset_2017_2020, "2017-2020")
# Aggiungi una colonna di classifica basata su Pts e GF
mls_stt$Rank <- ave(mls_stt$Pts + mls_stt$GF, mls_stt$Season, FUN = rank, decreasing = TRUE)
# Seleziona le prime 5 squadre di ciascun periodo
top5_2000_2008 <- subset(mls_stt, Season >= 2000 & Season <= 2008 & Rank <= 5)
top5_2009_2016 <- subset(mls_stt, Season >= 2009 & Season <= 2016 & Rank <= 5)
top5_2017_2020 <- subset(mls_stt, Season >= 2017 & Season <= 2020 & Rank <= 5)
```
Si nota che all'andamento del tempo la difficolta di stare tramite i primi/ essere campioni è dura perché da 2000 a 2008 abbiamo
```{r}
# Combina i dataframe delle prime 5 squadre di ciascun periodo
top5_df <- rbind(top5_2000_2008, top5_2009_2016, top5_2017_2020)
library(viridis)
# Crea l'animazione includendo un'indicazione visuale per le prime 5 squadre di ciascun periodo
animazione_totalelp <- ggplot(top5_df, aes(x = MediaPunti, y = MediaPartiteVinte, size = Pos, fill = Pos, label = Team)) +
geom_point(shape = 21, color = "black", stroke = 0.5) + # shape 21 include un bordo
geom_text(aes(label = Team), hjust = 1.2, vjust = 1.2, size = 3, color = "black") +
# Punti rossi per le prime 5 squadre
labs(title = "Andamento delle Squadre",
x = "Punti",
y = "Goal Segnati") +
scale_size_continuous(range = c(3, 10)) + # Imposta la scala delle dimensioni dei punti
scale_fill_continuous(type = "viridis") + # Puoi utilizzare diversi tipi di scale di colore
transition_states(Season, transition_length = 2, state_length = 1) +
enter_fade() +
exit_fade() +
ease_aes('linear') +
shadow_mark()
# Visualizza l'animazione
animazione_totalelp
library(ggtext)
mls_stt_media <- mls_stt %>%
group_by(Season) %>%
summarise(
MediaPunti = mean(Pts),
MediaPosizione = mean(Pos),
MediaPartiteVinte = mean(W)
)
# Unisci le medie al dataset originale
mls_stt <- left_join(mls_stt, mls_stt_media, by = "Season")
top5l_2000_2008 <- subset(mls_stt, Season >= 2000 & Season <= 2008 & Pos <= 5)
top5l_2009_2016 <- subset(mls_stt, Season >= 2009 & Season <= 2016 & Pos <= 5)
top5l_2017_2022 <- subset(mls_stt, Season >= 2017 & Season <= 2022 & Pos <= 5)
# Combina i dataframe delle prime 5 squadre di ciascun periodo
top5l_df <- rbind(top5l_2000_2008, top5l_2009_2016, top5l_2017_2020)
# venire qua # da rivedere pagina 1229
library(RColorBrewer)
custom1 = viridis::plasma(n = 42)
pop = top5l_2000_2008 %>%
hchart('pie', hcaes(x = city, y = Pos, color = custom1 , label = Season)) %>%
hc_tooltip(pointFormat = '<b> Proportion: </b> {point.percentage:,.2f}%') %>%
hc_title(text = "Most WINNERS", style = list(fontSize = '15px', fontWeight = 'bold')) %>%
hc_legend(enabled = TRUE, text = '@wildjang')
library(ggplot2)
library(ggtext)
library(ggplotify)
library(ggrepel)
library(av)
graficol <- ggplot(top5l_df, aes(x = MediaPunti, y = Rank, fill = Season, label = Team)) +
geom_point() +
geom_text_repel(data = top5l_df, aes(label = Team), size = 3, box.padding = 0.5, force = 4, segment.color = "grey50") +
labs(title = "Andamento delle Squadre",
x = "Media Punti",
y = "Rank") +
transition_states(Season, transition_length = 2, state_length = 1) +
enter_fade() +
exit_fade() +
ease_aes('linear') +
#scale_color_manual(values = rainbow(length(unique(top5l_df$Season)))) +
shadow_mark()
graficol
# Carica le librerie necessarie
library(dplyr)
library(ggplot2)
# Unisci i due dataset in base alla colonna "Team"
merged_data <- inner_join(mls_standings, summary_datalolp, by = "Team")
# Aggrega i dati per ottenere l'elenco delle squadre vincitrici di ogni stagione
vincitori_per_stagionep <- merged_data %>%
group_by(Season) %>%
slice(which.max(Pts.x)) %>%
select(Season, Team, Pts.y) %>%
arrange(Season)
library(viridis)
library(highcharter)
custom <- viridis::mako(n = 23)
po = vincitori_per_stagionep %>%
hchart('pie', hcaes(x = Team, y = Pts.y, color = custom )) %>%
hc_tooltip(pointFormat = '<b> Proportion: </b> {point.percentage:,.2f}%') %>%
hc_title(text = "Most WINNERS", style = list(fontSize = '15px', fontWeight = 'bold')) %>%
hc_legend(enabled = TRUE, text = '@wildjang')
library(ggplot2)
library(ggthemes)
# Unisci i due dataset in base alla colonna "Team"
merged_data <- inner_join(mls_standings, summary_datalolp, by = "Team")
opo <- ggplot(merged_data %>% filter(Pos.x == 1), aes(x = reorder(Team, -Pts.x), fill = as.factor(Season))) +
geom_bar(stat = "count") +
geom_text(stat = "count", aes(label = ifelse(rank(-Pts.x, ties.method = "first") == 1, as.character(Season), "")),
position = position_stack(vjust = 0.5), size = 3) +
scale_fill_manual(values = rainbow(length(1:23))) +
labs(title = "Andamento delle squadre di vertice nella MLS",
x = "Squadra",
y = "Numero di volte in prima posizione") +
theme_fivethirtyeight()
# Carica il pacchetto
library(viridis)
# Crea il grafico con una scala di colori più grande (viridis)
opop <- ggplot(merged_data %>% filter(Pos.x == 1), aes(x = reorder(Team, -Pts.x), fill = as.factor(Season))) +
geom_bar(stat = "count") +
geom_text(stat = "count", aes(label = ifelse(rank(-Pts.x, ties.method = "first") == 1, as.character(Season), "")),
position = position_stack(vjust = 0.5), size = 3) +
scale_fill_viridis(discrete = TRUE) + # Utilizza la scala di colori viridis
labs(title = "Andamento delle squadre di vertice nella MLS",
x = "Squadra",
y = "Numero di volte in prima posizione") +
theme_fivethirtyeight()
# Filtra le squadre che sono apparse nelle prime posizioni per un numero significativo di volte
soglia_significativa <- 1 # Personalizza la soglia a tuo piacimento
nuove_forze_dominanti <- merged_data %>%
filter(Pos.x %in% c(1:5)) %>%
group_by(Season, Team) %>%
summarize(Numero_di_volte = n()) %>%
filter(Numero_di_volte >= soglia_significativa)
# Visualizza le nuove squadre dominanti nel corso degli anni
print(nuove_forze_dominanti)
# Identifica le squadre di espansione (sostituisci con i nomi delle squadre di espansione effettive)
squadre_espansione <- c("ATL", "ATX", "CIN", "HOU", "LAFC", "MIA", "MIN", "NSH", "NYC", "ORL", "PHI", "POR", "RSL", "SEA", "VAN", "TOR")
# Filtra il dataframe per le squadre di espansione
subs_espansione <- mls_standings %>% filter(Team %in% squadre_espansione)
# Filtra il dataframe per le squadre di espansione
subs_espansionel <- mls_st %>% filter(Team %in% squadre_espansione)
# Analizza le performance
analisi_performance <- subs_espansione %>%
mutate(Espansione = ifelse(Team %in% squadre_espansione, "Espansione", "Non Espansione")) %>%
group_by(Espansione) %>%
summarise(
Media_Pts = mean(Pts),
Media_Posizione = mean(Pos),
Media_Partite_Vinte = mean(W)
# Aggiungi altre colonne se necessario
)
library(ggvis)
mls_stp = mls_stt %>%
group_by(city) %>%
ggvis(~city, ~Pts, fill = ~city) %>%
ggvis::layer_boxplots()
```{r}
library(dplyr)
# Calcola la media per ogni squadra nelle colonne Pts, PPG e W
subset_2000_2008pl <- subset_2000_2008p %>%
group_by(Team) %>%
summarise(
Media_Pts = mean(Pts),
Media_PPG = mean(PPG),
Media_W = mean(W),
Media_GF = mean(GF)
)
# Calcola il rango basato sulla media dei punti
subset_2000_2008plL <- subset_2000_2008pl %>%
arrange(desc(Media_Pts)) %>%
mutate(Rank = row_number())
# Seleziona le prime 5 squadre per ogni stagione in base al rango
top5_2000_2008pl <- subset_2000_2008plL %>%
filter(Rank <= 5)
library(dplyr)
# Calcola il massimo dei punti e la stagione corrispondente per ogni squadra
max_pts_season <- subset_2000_2008p %>%
group_by(Team) %>%
summarise(
Max_Pts = max(Pts),
Season_Max_Pts = Season[which.max(Pts)]
)
# Uniscilo con il dataframe top5_2000_2008
top5_2000_2008m <- top5_2000_2008pl %>%
left_join(max_pts_season, by = "Team")
# Visualizza il risultato
print(top5_2000_2008m)
```
```{r}
library(dplyr)
# Calcola la media per ogni squadra nelle colonne Pts, PPG e W
subset_2009_2016pl <- subset_2009_2016p %>%
group_by(Team) %>%
summarise(
Media_Pts = mean(Pts),
Media_PPG = mean(PPG),
Media_W = mean(W),
Media_GF = mean(GF)
)
# Calcola il rango basato sulla media dei punti
subset_2009_2016plL <- subset_2009_2016pl %>%
arrange(desc(Media_Pts)) %>%
mutate(Rank = row_number())
# Seleziona le prime 5 squadre per ogni stagione in base al rango
top5_2009_2016pl <- subset_2009_2016plL %>%
filter(Rank <= 5)
# Calcola il massimo dei punti e la stagione corrispondente per ogni squadra
max_pts_season_09_16 <- subset_2009_2016p %>%
group_by(Team) %>%
summarise(
Max_Pts = max(Pts),
Season_Max_Pts = Season[which.max(Pts)]
)
# Uniscilo con il dataframe top5_2000_2008
top5_2009_2016m <- top5_2009_2016pl %>%
left_join(max_pts_season_09_16, by = "Team")
# Visualizza il risultato
print(top5_2009_2016m)
```
```{r}
library(dplyr)
# Calcola la media per ogni squadra nelle colonne Pts, PPG e W
subset_2017_2022pl <- subset_2017_2022p %>%
group_by(Team) %>%
summarise(
Media_Pts = mean(Pts),
Media_PPG = mean(PPG),
Media_W = mean(W),
Media_GF = mean(GF)
)
# Calcola il rango basato sulla media dei punti
subset_2017_2022plL <- subset_2017_2022pl %>%
arrange(desc(Media_Pts)) %>%
mutate(Rank = row_number())
# Seleziona le prime 5 squadre per ogni stagione in base al rango
top5_2017_2022pl <- subset_2017_2022plL %>%
filter(Rank <= 5)
# Calcola il massimo dei punti e la stagione corrispondente per ogni squadra
max_pts_season_17_22 <- subset_2017_2022p %>%
group_by(Team) %>%
summarise(
Max_Pts = max(Pts),
Season_Max_Pts = Season[which.max(Pts)]
)
# Uniscilo con il dataframe top5_2000_2008
top5_2017_2022m <- top5_2017_2022pl %>%
left_join(max_pts_season_17_22, by = "Team")
# Visualizza il risultato
print(top5_2017_2022m)
```
```{r}
library(plotly)
# Converti la colonna Season_Max_Pts in un fattore per ordinare correttamente sull'asse x
top5_2000_2008m$Season_Max_Pts <- factor(top5_2000_2008m$Season_Max_Pts, levels = unique(top5_2000_2008m$Season_Max_Pts))
# Creazione del grafico interattivo
plot1 <- plot_ly(top5_2000_2008m, x = ~Team, y = ~Media_Pts, type = 'scatter', mode = 'markers',
text = ~paste("Season_Max_Pts: ", Season_Max_Pts, "<br>Rango: ", Rank, "<br>Punto max: ", Max_Pts, "<br> Media_GF: ", Media_GF),
marker = list(size = ~Media_GF, color = ~Max_Pts, colorscale = 'Viridis')) %>%
layout(title = "Top 5 Squadre (2000-2008)",
xaxis = list(title = "Stagione Max Pts"),
yaxis = list(title = "Media Punti"),
hovermode = "closest")
library(plotly)
# Creazione del grafico interattivo
plot1l <- plot_ly(top5_2000_2008m, x = ~Team, y = ~Media_Pts, type = 'scatter', mode = 'markers',
text = ~paste("Season_Max_Pts: ", Season_Max_Pts, "<br>Rango: ", Rank, "<br>Punto max: ", Max_Pts, "<br> Media_GF: ", Media_GF),
marker = list(size = ~Media_GF, color = ~Max_Pts, colorscale = 'Viridis')) %>%
layout(title = "Top 5 Squadre (2000-2008)",
xaxis = list(title = "Stagione Max Pts"),
yaxis = list(title = "Media Punti"),
hovermode = "closest",
template = "plotly_dark") # Usa 'plotly_dark' come tema di default
# Aggiungi colori personalizzati all'arcobaleno
plot1l$marker$colorbar$len <- 0.5
plot1l$marker$colorbar$lenmode <- "fraction"
plot1l$marker$colorbar$title <- "Max_Pts"
plot1l$marker$colorbar$tickvals <- c(1, 2, 3, 4, 5) # Aggiungi i valori desiderati
plot1l$marker$colorbar$ticktext <- c("Minimo", "", "", "", "Massimo") # Etichette personalizzate
# Visualizza il grafico
plot1l
library(highcharter)
library(highr)
# Creazione del grafico interattivo direttamente con la sintassi di Highcharter
highchart_plot1 <- plot_ly(top5_2000_2008m, x = ~Team, y = ~Media_Pts, type = 'scatter', mode = 'markers',
text = ~paste("Season_Max_Pts: ", Season_Max_Pts, "<br>Rango: ", Rank, "<br>Punto max: ", Max_Pts, "<br> Media_GF: ", Media_GF),
marker = list(size = ~Media_GF, color = ~Max_Pts, colorscale = 'Viridis')) %>%
layout(title = "Top 5 Squadre (2000-2008)",
xaxis = list(title = "Stagione Max Pts"),
yaxis = list(title = "Media Punti"),
hovermode = "closest")
# Visualizzazione del grafico Highcharter
highchart_plot1
# Creazione del grafico interattivo direttamente con la sintassi di Highcharter
highchart_plot2 <- plot_ly(top5_2009_2016m, x = ~Team, y = ~Media_Pts, type = 'scatter', mode = 'markers',
text = ~paste("Season_Max_Pts: ", Season_Max_Pts, "<br>Rango: ", Rank, "<br>Punto max: ", Max_Pts, "<br> Media_GF: ", Media_GF),
marker = list(size = ~Media_GF, color = ~Max_Pts, colorscale = 'Viridis')) %>%
layout(title = "Top 5 Squadre (2000-2008)",
xaxis = list(title = "Stagione Max Pts"),
yaxis = list(title = "Media Punti"),
hovermode = "closest")
# Visualizzazione del grafico Highcharter
highchart_plot2
# Creazione del grafico interattivo direttamente con la sintassi di Highcharter
highchart_plot3 <- plot_ly(top5_2017_2022m, x = ~Team, y = ~Media_Pts, type = 'scatter', mode = 'markers',
text = ~paste("Season_Max_Pts: ", Season_Max_Pts, "<br>Rango: ", Rank, "<br>Punto max: ", Max_Pts, "<br> Media_GF: ", Media_GF),
marker = list(size = ~Media_GF, color = ~Max_Pts, colorscale = 'Viridis')) %>%
layout(title = "Top 5 Squadre (2000-2008)",
xaxis = list(title = "Stagione Max Pts"),
yaxis = list(title = "Media Punti"),
hovermode = "closest")
# Visualizzazione del grafico Highcharter
highchart_plot3
library(highcharter)
# Visualizzazione dei grafici Highcharter insieme
highcharter::hcarrange(highchart_plot1, highchart_plot2, highchart_plot3, nrow = 1)
# Visualizzazione dei grafici Highcharter insieme
par(mfrow=c(1,3))
highchart_plot1
highchart_plot2
highchart_plot3
```
```{r}
library(ggplot2)
library(tidyverse)
library(ggthemes)
# Creazione del grafico con i vincitori di ogni stagione
winners_plot <- mls_stt %>%
group_by(Season) %>%
filter(Pos == 1) %>%
ggplot(aes(x = Season, y = as.factor(Team))) +
geom_text(aes(label = Team), vjust = -0.5, size = 3) +
labs(title = "Vincitori della MLS per stagione",
x = "Stagione",
y = "Squadra") +
theme_fivethirtyeight()
# Creazione del grafico con i tre team con più titoli
top3_teams_plot <- bind_rows(
subset_2000_2008p,
subset_2009_2016p,
subset_2017_2022p
) %>%
group_by(Team) %>%
summarise(Titoli = n_distinct(Rank == 1)) %>%
top_n(3, Titoli) %>%
ggplot(aes(x = reorder(Team, -Titoli), y = Titoli, fill = Team)) +
geom_bar(stat = "identity") +
labs(title = "I tre team con più titoli nella MLS",
x = "Squadra",
y = "Numero di Titoli") +
theme_fivethirtyeight()
# Visualizzazione dei grafici
winners_plot
top3_teams_plot
```
```{r}
library(dplyr)
library(ggplot2)
# Creazione della colonna Rank
mls_stt <- mls_standings %>%
group_by(Season) %>%
mutate(Rank = rank(desc(Pts)))
# Creazione del grafico con la colonna Rank
rank_plot <- mls_stt %>%
ggplot(aes(x = Season, y = Rank, color = Team)) +
geom_point(size = 3) +
labs(title = "Posizione delle squadre in base ai punti",
x = "Stagione",
y = "Rank") +
theme_minimal()
# Creazione del grafico con la colonna Rank
rank_plotl <- mls_standings %>%
ggplot(aes(x = Season, y = Pos, color = Team)) +
geom_point(size = 3) +
labs(title = "Posizione delle squadre in base ai punti",
x = "Stagione",
y = "Rank") +
theme_minimal()
# Visualizzazione del grafico
rank_plot
```
```{r}
library(tidyverse)
library(ggplot2)
library(ggthemes)
# Creazione della colonna Rank
mls_sttp <- mls_standings %>%
group_by(Season) %>%
mutate(Rank = rank(desc(Pts)))
# Creazione della colonna Titoli
mls_sttp <- mls_sttp %>%
group_by(Team) %>%
mutate(Titoli = sum(Rank %in% c(1, 2, 3)))
# Creazione del grafico con la colonna Titoli
titoli_plot <- mls_sttp %>%
ggplot(aes(x = Team, y = Titoli, fill = Team)) +
geom_bar(stat = "identity") +
labs(title = "Titoli vinti da ogni squadra",
x = "Squadra",
y = "Numero di Titoli") +
theme_fivethirtyeight()
# Visualizzazione del grafico
titoli_plot
# Creazione del grafico con la colonna Titoli
titoli_plotp <- mls_sttp %>%
ggplot(aes(x = Team, y = Titoli, fill = Titoli)) +
geom_bar(stat = "identity") +
labs(title = "Titoli vinti da ogni squadra",
x = "Squadra",
y = "Numero di Titoli") +
theme_fivethirtyeight()
# Visualizzazione del grafico
titoli_plotp