-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathScript Patricelli.R
1591 lines (1170 loc) · 45.3 KB
/
Script Patricelli.R
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
#### Librerie ####
library(WriteXLS)
require(tidyverse)
library(magrittr)
library(RColorBrewer)
library(lubridate)
library(rgdal)
library(plyr)
library(sp)
library(dplyr) # load dplyr
library(tmap)
library(ggplot2) # for general plotting
library(ggmap) # for fortifying shapefileslibrary(maptools)
library(raster)
require(maptools)
library(rgeos)
library(tidyverse)
library(lubridate)
library(data.table)
library(arules)
library(arulesViz)
library("devtools")
install_github("mhahsler/arulesViz")
library(caTools)
library(data.table)
library(psych)
library(mvtnorm)
library(caret)
library(PRROC)
library(ggplot2)
library(caTools)
library(pROC)
library(readxl)
library(MASS)
library(e1071)
library(utils)
library(randomForest)
require(caTools)
library(e1071)
#### lavoro sui dataset ####
#Carico Dataset
info.clienti <- read.csv("C:/Users/LEONARDO/Desktop/Falco/exam/Info Clienti.csv", row.names=1)
library(readxl)
info.uso <- read_excel("C:/Users/LEONARDO/Desktop/Falco/exam/Info.uso.xlsx")
churn.data <- read.csv("C:/Users/LEONARDO/Desktop/Falco/exam/Churn.csv")
#rimuovo la variabile professione
info.clienti <- info.clienti[,-11]
#rinomino altre variabili
#prime statistiche descrittive
summary(info.clienti)
#guardo a quali prezzi sono state comprate le tessere
info.uso.1<-info.uso[,c(4,8)]
info.uso.1$importo <- as.numeric(as.character(info.uso.1$importo))
info.uso.agg<-aggregate(info.uso.1,list(CodCliente=info.uso.1$CodCliente),FUN=sum)#list è argomento per variabile su cui aggregare
colnames(info.uso.agg)[3]<-'somma_cod_Cli'
n_visite<-info.uso.agg$somma_cod/info.uso.agg$CodCliente
info.uso.agg<-cbind(info.uso.agg,n_visite)
info.uso.agg<-info.uso.agg[,-3]
colnames(info.uso.agg)[2]<-'spesa_tot'
colnames(info.uso.agg)[1]<-'codcliente'
info.visite <- info.uso.agg
rm(info.uso.agg)
rm(info.uso.1)
totale<-merge(info.visite,info.clienti,by='codcliente')
totale$data_nascita <- as.numeric(as.character(totale$data_nascita))
eta_abbonati <- rep(2013, nrow(totale))-totale$data_nascita
totale.2 <- cbind(totale, eta_abbonati)
totale.3 <- merge(totale.2, churn.data,by="codcliente")
totale <- totale.3
rm(totale.2)
rm(totale.3)
summary(totale$eta_abbonati)
totale <- subset(totale, eta_abbonati>= 5)
sapply(totale, class)
totale$importo <- as.numeric(as.character(totale$importo))
totale$si2014 <- as.factor(totale$si2014)
sapply(totale, class)
#### Matrice di Adiacenza #####
info.uso.2 <- cbind(info.uso, rep(1, length(info.uso$importo)))
visite <- info.uso.2[,c(8,5)]
View(visite)
colnames(info.uso.2) [9]<- "N"
visite_cliente <- aggregate(info.uso.2$N,list(CodCliente = info.uso.2$CodCliente,
museo = info.uso.2$museo),sum)
visite_cliente_date <- aggregate(info.uso.2$N,list(CodCliente = info.uso.2$CodCliente,
museo = info.uso.2$museo, data= info.uso.2$datai),sum)
head(visite_cliente)
musei <- unique(info.uso.2$museo)
musei <- as.data.frame(musei)
nodes <- musei %>% rowid_to_column("id")
musei_visite <- aggregate(info.uso.2$N, list(museo=info.uso.2$museo), sum)
musei_visite_28 <- subset(musei_visite, x>=3800)
musei_top_28 <- unique(musei_visite_28$museo)
musei_top_28 <- as.data.frame(musei_top_28)
visite_28 <- subset(visite, museo %in% musei_top_28$musei_top_28)
library(data.table)
transazioni <- dcast(data = visite_cliente, CodCliente ~ museo, value.var = "x")
transazioni[is.na(transazioni)] <- 0
visite_cliente_01 <- visite_cliente
visite_cliente_01$x[visite_cliente_01$x >= 2] <- 1
transazioni_01 <- dcast(data = visite_cliente, CodCliente ~ museo, value.var = "x")
transazioni_01[is.na(transazioni_01)] <- 0
##### Variabile "mesi"#######
library(lubridate)
sapply(visite_cliente_date, class)
visite_cliente_date$Month <- format(as.Date(visite_cliente_date$data), "%m")
visite_cliente_date$January <- 0
visite_cliente_date$February <- 0
visite_cliente_date$March <- 0
visite_cliente_date$April <- 0
visite_cliente_date$May <- 0
visite_cliente_date$June <- 0
visite_cliente_date$July <- 0
visite_cliente_date$August <- 0
visite_cliente_date$September <- 0
visite_cliente_date$October <- 0
visite_cliente_date$November <- 0
visite_cliente_date$Dicember <- 0
visite_cliente_date$January[visite_cliente_date$Month == "01"] <- 1
visite_cliente_date$February[visite_cliente_date$Month == "02"] <- 1
visite_cliente_date$March[visite_cliente_date$Month == "03"] <- 1
visite_cliente_date$April[visite_cliente_date$Month == "04"] <- 1
visite_cliente_date$May[visite_cliente_date$Month == "05"] <- 1
visite_cliente_date$June[visite_cliente_date$Month == "06"] <- 1
visite_cliente_date$July[visite_cliente_date$Month == "07"] <- 1
visite_cliente_date$August[visite_cliente_date$Month == "08"] <- 1
visite_cliente_date$September[visite_cliente_date$Month == "09"] <- 1
visite_cliente_date$October[visite_cliente_date$Month == "10"] <- 1
visite_cliente_date$November[visite_cliente_date$Month == "11"] <- 1
visite_cliente_date$Dicember[visite_cliente_date$Month == "12"] <- 1
head(visite_cliente_date)
sapply(visite_cliente_date, class)
Gennaio <- subset(visite_cliente_date, January == 1)
Gennaio$Month <- NULL
Gennaio$February <- NULL
Gennaio$March <- NULL
Gennaio$April <- NULL
Gennaio$May <- NULL
Gennaio$June <- NULL
Gennaio$July <- NULL
Gennaio$August <- NULL
Gennaio$September <- NULL
Gennaio$October <- NULL
Gennaio$November <- NULL
Gennaio$Dicember <- NULL
Gennaio <- aggregate(Gennaio$January, list("ID" = Gennaio$CodCliente), sum)
Gennaio$January <- Gennaio$x
Gennaio$x <- NULL
head(Gennaio)
Febbraio <- subset(visite_cliente_date, February == 1)
Febbraio$Month <- NULL
Febbraio$January <- NULL
Febbraio$March <- NULL
Febbraio$April <- NULL
Febbraio$May <- NULL
Febbraio$June <- NULL
Febbraio$July <- NULL
Febbraio$August <- NULL
Febbraio$September <- NULL
Febbraio$October <- NULL
Febbraio$November <- NULL
Febbraio$Dicember <- NULL
Febbraio <- aggregate(Febbraio$February, list("ID" = Febbraio$CodCliente), sum)
Febbraio$February <- Febbraio$x
Febbraio$x <- NULL
Marzo <- subset(visite_cliente_date, March == 1)
Marzo$Month <- NULL
Marzo$January <- NULL
Marzo$February <- NULL
Marzo$April <- NULL
Marzo$May <- NULL
Marzo$June <- NULL
Marzo$July <- NULL
Marzo$August <- NULL
Marzo$September <- NULL
Marzo$October <- NULL
Marzo$November <- NULL
Marzo$Dicember <- NULL
Marzo <- aggregate(Marzo$March, list("ID" = Marzo$CodCliente), sum)
Marzo$March <- Marzo$x
Marzo$x <- NULL
Aprile <- subset(visite_cliente_date, April == 1)
Aprile$Month <- NULL
Aprile$January <- NULL
Aprile$February <- NULL
Aprile$March <- NULL
Aprile$May <- NULL
Aprile$June <- NULL
Aprile$July <- NULL
Aprile$August <- NULL
Aprile$September <- NULL
Aprile$October <- NULL
Aprile$November <- NULL
Aprile$Dicember <- NULL
Aprile <- aggregate(Aprile$April, list("ID" = Aprile$CodCliente), sum)
Aprile$April <- Aprile$x
Aprile$x <- NULL
Maggio <- subset(visite_cliente_date, May == 1)
Maggio$Month <- NULL
Maggio$January <- NULL
Maggio$February <- NULL
Maggio$March <- NULL
Maggio$April <- NULL
Maggio$June <- NULL
Maggio$July <- NULL
Maggio$August <- NULL
Maggio$September <- NULL
Maggio$October <- NULL
Maggio$November <- NULL
Maggio$Dicember <- NULL
Maggio <- aggregate(Maggio$May, list("ID" = Maggio$CodCliente), sum)
Maggio$May <- Maggio$x
Maggio$x <- NULL
Giugno <- subset(visite_cliente_date, June == 1)
Giugno$Month <- NULL
Giugno$January <- NULL
Giugno$February <- NULL
Giugno$March <- NULL
Giugno$April <- NULL
Giugno$May <- NULL
Giugno$July <- NULL
Giugno$August <- NULL
Giugno$September <- NULL
Giugno$October <- NULL
Giugno$November <- NULL
Giugno$Dicember <- NULL
Giugno <- aggregate(Giugno$June, list("ID" = Giugno$CodCliente), sum)
Giugno$June <- Giugno$x
Giugno$x <- NULL
Luglio <- subset(visite_cliente_date, July == 1)
Luglio$Month <- NULL
Luglio$January <- NULL
Luglio$February <- NULL
Luglio$March <- NULL
Luglio$April <- NULL
Luglio$May <- NULL
Luglio$June <- NULL
Luglio$August <- NULL
Luglio$September <- NULL
Luglio$October <- NULL
Luglio$November <- NULL
Luglio$Dicember <- NULL
Luglio <- aggregate(Luglio$July, list("ID" = Luglio$CodCliente), sum)
Luglio$July <- Luglio$x
Luglio$x <- NULL
Agosto <- subset(visite_cliente_date, August == 1)
Agosto$Month <- NULL
Agosto$January <- NULL
Agosto$February <- NULL
Agosto$March <- NULL
Agosto$April <- NULL
Agosto$May <- NULL
Agosto$June <- NULL
Agosto$July <- NULL
Agosto$September <- NULL
Agosto$October <- NULL
Agosto$November <- NULL
Agosto$Dicember <- NULL
Agosto <- aggregate(Agosto$August, list("ID" = Agosto$CodCliente), sum)
Agosto$August <- Agosto$x
Agosto$x <- NULL
Settembre <- subset(visite_cliente_date, September == 1)
Settembre$Month <- NULL
Settembre$January <- NULL
Settembre$February <- NULL
Settembre$March <- NULL
Settembre$April <- NULL
Settembre$May <- NULL
Settembre$June <- NULL
Settembre$July <- NULL
Settembre$August <- NULL
Settembre$October <- NULL
Settembre$November <- NULL
Settembre$Dicember <- NULL
Settembre <- aggregate(Settembre$September, list("ID" = Settembre$CodCliente), sum)
Settembre$September <- Settembre$x
Settembre$x <- NULL
Ottobre <- subset(visite_cliente_date, October == 1)
Ottobre$Month <- NULL
Ottobre$January <- NULL
Ottobre$February <- NULL
Ottobre$March <- NULL
Ottobre$April <- NULL
Ottobre$May <- NULL
Ottobre$June <- NULL
Ottobre$July <- NULL
Ottobre$August <- NULL
Ottobre$September <- NULL
Ottobre$November <- NULL
Ottobre$Dicember <- NULL
Ottobre <- aggregate(Ottobre$October, list("ID" = Ottobre$CodCliente), sum)
Ottobre$October <- Ottobre$x
Ottobre$x <- NULL
Novembre <- subset(visite_cliente_date, November == 1)
Novembre$Month <- NULL
Novembre$January <- NULL
Novembre$February <- NULL
Novembre$March <- NULL
Novembre$April <- NULL
Novembre$May <- NULL
Novembre$June <- NULL
Novembre$July <- NULL
Novembre$August <- NULL
Novembre$September <- NULL
Novembre$October <- NULL
Novembre$Dicember <- NULL
Novembre <- aggregate(Novembre$November, list("ID" = Novembre$CodCliente), sum)
Novembre$November <- Novembre$x
Novembre$x <- NULL
Dicembre <- subset(visite_cliente_date, Dicember == 1)
Dicembre$Month <- NULL
Dicembre$January <- NULL
Dicembre$February <- NULL
Dicembre$March <- NULL
Dicembre$April <- NULL
Dicembre$May <- NULL
Dicembre$June <- NULL
Dicembre$July <- NULL
Dicembre$August <- NULL
Dicembre$September <- NULL
Dicembre$October <- NULL
Dicembre$November <- NULL
Dicembre <- aggregate(Dicembre$Dicember, list("ID" = Dicembre$CodCliente), sum)
Dicembre$Dicember <- Dicembre$x
Dicembre$x <- NULL
Visite_mesi <- merge(Gennaio, Febbraio, by="ID", all=TRUE )
Visite_mesi <- merge(Visite_mesi, Marzo, by="ID", all=TRUE )
Visite_mesi <- merge(Visite_mesi, Aprile, by="ID", all=TRUE )
Visite_mesi <- merge(Visite_mesi, Maggio, by="ID", all=TRUE )
Visite_mesi <- merge(Visite_mesi, Giugno, by="ID", all=TRUE )
Visite_mesi <- merge(Visite_mesi, Luglio, by="ID", all=TRUE)
Visite_mesi <- merge(Visite_mesi, Agosto, by="ID", all=TRUE)
Visite_mesi <- merge(Visite_mesi, Settembre, by="ID", all=TRUE)
Visite_mesi <- merge(Visite_mesi, Ottobre, by="ID", all=TRUE)
Visite_mesi <- merge(Visite_mesi, Novembre, by="ID", all=TRUE)
Visite_mesi <- merge(Visite_mesi, Dicembre, by="ID", all=TRUE)
Visite_mesi[is.na(Visite_mesi)] <- 0
head(Visite_mesi)
Visite_mesi$January[Visite_mesi$January >= 2] <- 1
Visite_mesi$February[Visite_mesi$February >= 2] <- 1
Visite_mesi$March[Visite_mesi$March >= 2] <- 1
Visite_mesi$April[Visite_mesi$April >= 2] <- 1
Visite_mesi$May[Visite_mesi$May >= 2] <- 1
Visite_mesi$June[Visite_mesi$June >= 2] <- 1
Visite_mesi$July[Visite_mesi$July >= 2] <- 1
Visite_mesi$August[Visite_mesi$August >= 2] <- 1
Visite_mesi$September[Visite_mesi$September >= 2] <- 1
Visite_mesi$October[Visite_mesi$October >= 2] <- 1
Visite_mesi$November[Visite_mesi$November >= 2] <- 1
Visite_mesi$Dicember[Visite_mesi$Dicember >= 2] <- 1
Visite_mesi$sum_month <- rowSums( Visite_mesi[,2:13] )
head(Visite_mesi)
colnames(Visite_mesi)
colnames(Visite_mesi) = c("codcliente", "January", "February",
"March", "April", "May", "June", "July",
"August", "September", "October",
"November", "Dicember", "mesi_tot")
colnames(Visite_mesi)
Visite_mesi$January <- NULL
Visite_mesi$February <- NULL
Visite_mesi$March <- NULL
Visite_mesi$April <- NULL
Visite_mesi$May <- NULL
Visite_mesi$June <- NULL
Visite_mesi$July <- NULL
Visite_mesi$August <- NULL
Visite_mesi$September <- NULL
Visite_mesi$October <- NULL
Visite_mesi$November <- NULL
Visite_mesi$Dicember <- NULL
totale <- merge(totale, Visite_mesi, by="codcliente", all.x=TRUE)
sapply(totale, class)
rm(Gennaio)
rm(Febbraio)
rm(Marzo)
rm(Aprile)
rm(Maggio)
rm(Giugno)
rm(Luglio)
rm(Agosto)
rm(Settembre)
rm(Ottobre)
rm(Novembre)
rm(Dicembre)
totale$mesi_tot <- as.integer(totale$mesi_tot)
sapply(totale, class)
##### Variabile Residenza #####
totale["Residenza"] <- totale$comune
totale$Residenza <- as.numeric(as.character(totale$Residenza))
library(readxl)
CAP_ITALIANI_VERO <- read_excel("C:/Users/LEONARDO/Desktop/Falco/CAP ITALIANI VERO.xlsx")
CAP_TO_PROV = subset(CAP_ITALIANI_VERO, Regione=="Piemonte" & Provincia=="Torino")
CAP_PIEM_NO_TO = subset(CAP_ITALIANI_VERO, Regione=="Piemonte" & Provincia!="Torino")
totale$Residenza[totale$cap %in% CAP_TO_PROV$CAP ] <- 2
totale$Residenza[totale$cap %in% CAP_PIEM_NO_TO$CAP ] <- 1
totale$Residenza[totale$comune=="TORINO" ] <- 3
totale$Residenza[is.na(totale$Residenza)] <- 0
totale$Residenza <- as.factor(totale$Residenza)
##### Densità età X sesso #####
eta_sex <- ggplot(na.omit(totale), aes(x = eta_abbonati, fill=sesso)) + geom_density(alpha=0.4) + ggtitle("Customer's age") +
xlab("Age")
eta_sex + scale_fill_manual( values = c("black","white"))
eta_sex <- ggplot(na.omit(totale), aes(x = eta_abbonati, fill=sesso)) + geom_density(alpha=0.4) + ggtitle("Customer's age") +
xlab("Age")
eta_sex + scale_fill_manual( values = c("black","white"), name="Sex",
breaks=c("1", "0"),
labels=c("Female", "Male"))
##### Densità età X Churn #####
eta <- ggplot(totale, aes(x = eta_abbonati, fill=si2014)) + geom_density(alpha=0.4) + ggtitle("Churn by age") + xlab("Age")
eta + scale_fill_manual( values = c("red","blue"), name = "Renewal",
breaks=c("1", "0"),
labels=c("No", "Yes"))
##### Sesso X Churn #####
sesso_churn <- ggplot(data.frame(totale), aes(x=sesso, fill=si2014)) +
geom_bar(position="dodge") + ggtitle("Sex and Churn") + xlab("Sex")
sesso_churn + scale_fill_manual( name = "Renewal",
breaks=c("0", "1"),
labels=c("No", "Yes"))
##### Residenze X Churn ####
residenze <- ggplot(data.frame(totale), aes(x=Residenza, fill=si2014)) +
geom_bar()
residenze
sapply(totale, class)
##### Spesa_tot X si2014####
spesa_churn <- ggplot(totale, aes(x = spesa_tot, fill=si2014)) + geom_density(alpha=0.25)
spesa_churn + scale_fill_manual( values = c("black","green")) + xlim(c(0, 250))
##### N_visite X si2014 #####
n_visite <- ggplot(totale, aes(x = n_visite, fill=si2014)) + geom_density(alpha=0.4)
n_visite + scale_fill_manual( values = c("orange","white")) + xlim(c(0,80))
##### Mesi TOT X si2014 ####
mesi_tot <- ggplot(totale, aes(x = mesi_tot, fill=si2014)) + geom_histogram(binwidth = 2)
mesi_tot
#### Diffusione Tessere Musei con Shapefiles ######
#library(sp)
#library(rgdal)
shp <- readOGR(dsn = "C:/Users/LEONARDO/Desktop/Falco/exam", layer="cap_NO")
head(shp@data)
names(shp@data)
summary(shp@data)
#metto in cap tutte le persone che vivono in un cap
library(plyr)
cap = table(totale$cap)
cap
cap = as.matrix(cap)
cap[NA,]<-0
cap = as.data.frame(cap)
cap_vettore=rownames(cap)
cap = cbind(cap, cap_vettore)
names(cap)[1] = 'Freq'
names(cap)[2] = 'cap'
table(cap$Freq)
table(cap$cap)
cap$cap <- as.numeric(as.character(cap$cap))
sapply(cap, class)
#controllo quali cap sono presenti e quali assenti
shp$IT_CAP %in% cap$cap
shp$IT_CAP[!shp$IT_CAP %in% cap$cap]
#library(dplyr) # load dplyr
shp@data <- left_join(shp@data, cap, by = c('IT_CAP' = 'cap'))
names(shp@data)
head(shp@data)
summary(shp@data)
#GGPLOT2
library(ggplot2) # for general plotting
#library(ggmap) # for fortifying shapefiles
shp_df <- fortify(shp)
#con Fortify c'è una perdita di informazioni, ma le righe rimangono
#uguali, quindi basta creare una colonna id che avanza progressivamente
#e usarla come riferimento per il left
shp$id = row.names(shp)
shp_df = left_join(shp_df, shp@data, by="id")
head(shp_df)
head(shp@data)
# Now the shapefile can be plotted as either a geom_path or a geom_polygon.
# Paths handle clipping better. Polygons can be filled.
# You need the aesthetics long, lat, and group.
mappa_tessere = ggplot(shp_df, aes(long, lat, group=group, fill=Freq)) +
geom_polygon(data=shp_df, aes(x=shp_df$long, y=shp_df$lat), colour='black') + #serve per mettere i bordi
coord_equal() +
labs(x = "", y="",
fill='Number of \nsubscriptions') +
ggtitle("Subscription spread in north Italy") +
scale_fill_gradient(low='Red', high='yellow') +
theme_minimal()
mappa_tessere
############## ZOOM : Diffusione tessere in Piemonte ####
#library(readxl)
comune_cap_pr_regione <- read_excel("C:/Users/LEONARDO/Desktop/Falco/CAP ITALIANI VERO.xlsx")
Cap_Piemonte <- subset(comune_cap_pr_regione, Regione=="Piemonte")
shp.2 <- shp
Cap_Piemonte$CAP <- as.numeric(as.character(Cap_Piemonte$CAP))
sapply(Cap_Piemonte, class)
summary(Cap_Piemonte)
shp.2@data <- subset(shp.2@data, IT_CAP %in% Cap_Piemonte$CAP)
summary(shp.2@data)
summary(Cap_Piemonte$CAP)
head(shp.2@data)
#GGPLOT2
library(ggplot2) # for general plotting
library(ggmap) # for fortifying shapefiles
shp.2=subset(shp,IT_CAP%in%Cap_Piemonte$CAP)
shp.2_df <- fortify(shp.2)
#con Fortify c'è una perdita di informazioni, ma le righe rimangono
#uguali, quindi basta creare una colonna id che avanza progressivamente
#e usarla come riferimento per il left
shp.2$id = row.names(shp.2)
shp.2_df = left_join(shp.2_df, shp.2@data, by="id")
head(shp.2_df)
head(shp.2@data)
# Now the shapefile can be plotted as either a geom_path or a geom_polygon.
# Paths handle clipping better. Polygons can be filled.
# You need the aesthetics long, lat, and group.
mappa_tessere_piemonte = ggplot(shp.2_df, aes(long, lat, group=group, fill=Freq)) +
geom_polygon(data=shp.2_df, aes(x=shp.2_df$long, y=shp.2_df$lat), colour='black') + #serve per mettere i bordi
coord_equal() +
labs(x = "", y="",
fill='Number of \nSubscriptions') +
ggtitle("Subscriptions in Piemonte") +
scale_fill_gradient(low='Red', high='yellow') +
theme_minimal()
mappa_tessere_piemonte
#### Shapefile : Visite per CAP #####
sapply(totale, class)
totale$cap <- as.numeric(as.character(totale$cap))
total_cap <- totale[,c(3, 14)]
#aggrego facendo somma visite tenendo conto del cap
vis_total <- aggregate(total_cap$n_visite, list(total_cap = total_cap$cap), sum)
vis_total
##
shp@data <- left_join(shp@data, vis_total, by = c('IT_CAP' = 'total_cap'))
shp_df <- fortify(shp)
#con Fortify c'è una perdita di informazioni, ma le righe rimangono
#uguali, quindi basta creare una colonna id che avanza progressivamente
#e usarla come riferimento per il left
shp$id = row.names(shp)
shp_df = left_join(shp_df, shp@data, by="id")
mappa_visite = ggplot(shp_df, aes(long, lat, group=group, fill=Freq)) +
geom_polygon(data=shp_df, aes(x=shp_df$long, y=shp_df$lat), colour='black') + #serve per mettere i bordi
coord_equal() +
labs(x = "", y="",
fill='Number of visits') +
ggtitle("Visits per city") +
scale_fill_gradient(low='Green', high='Black') +
theme_minimal()
mappa_visite
#### Shapefile : Rinnovi per CAP####
shp.copia <- readOGR(dsn = "C:/Users/LEONARDO/Desktop/Falco/exam", layer="cap_NO")
churn_cap <- totale[,c(14, 18)]
churn_cap$cap <- as.numeric(as.character(churn_cap$cap))
churn_cap$si2014 <- as.numeric(as.character(churn_cap$si2014))
sapply(churn_cap, class)
churn_cap_agg <- aggregate(churn_cap$si2014, list(cap = churn_cap$cap), sum)
colnames(churn_cap_agg)[2]="N_churn"
head(churn_cap_agg)
summary(churn_cap_agg)
shp.copia@data <- left_join(shp.copia@data, churn_cap_agg, by = c('IT_CAP' = 'cap'))
shp_cap_churn <- fortify(shp.copia)
#con Fortify c'è una perdita di informazioni, ma le righe rimangono
#uguali, quindi basta creare una colonna id che avanza progressivamente
#e usarla come riferimento per il left
shp.copia$id = row.names(shp.copia)
shp_cap_churn = left_join(shp_cap_churn, shp.copia@data, by="id")
head(shp.copia@data)
mappa_cap_churn = ggplot(shp_cap_churn, aes(long, lat, group=group, fill=N_churn)) +
geom_polygon(data=shp_cap_churn, aes(x=shp_cap_churn$long, y=shp_cap_churn$lat), colour='black') + #serve per mettere i bordi
coord_equal() +
labs(x = "", y="",
fill='Number of Renewal') +
ggtitle("Renewal per city") +
scale_fill_gradient(low='black', high='yellow') +
theme_minimal()
mappa_cap_churn
############## ZOOM : Rinnovi per CAP in Piemonte ####
shp.copia <- readOGR(dsn = "C:/Users/LEONARDO/Desktop/Falco/exam", layer="cap_NO")
head(shp.copia)
shp.copia@data <- left_join(shp.copia@data, churn_cap_agg, by = c('IT_CAP' = 'cap'))
head(shp.copia@data)
shp.Piem = subset(shp.copia,IT_CAP%in%Cap_Piemonte$CAP)
shp.Piem_df <- fortify(shp.Piem)
#con Fortify c'è una perdita di informazioni, ma le righe rimangono
#uguali, quindi basta creare una colonna id che avanza progressivamente
#e usarla come riferimento per il left
shp.Piem$id = row.names(shp.Piem)
shp.Piem_df = left_join(shp.Piem_df, shp.Piem@data, by="id")
head(shp.Piem_df)
head(shp.Piem@data)
mappa_cap_churn_piemonte = ggplot(shp.Piem_df, aes(long, lat, group=group, fill=N_churn)) +
geom_polygon(data=shp.Piem_df, aes(x=shp.Piem_df$long, y=shp.Piem_df$lat), colour='black') + #serve per mettere i bordi
coord_equal() +
labs(x = "", y="",
fill='Number of Renewals') +
ggtitle("Renewals in Piemonte") +
scale_fill_gradient(low='black', high='yellow') +
theme_minimal()
mappa_cap_churn_piemonte
#### Market Basket Analysys ####
library(arules)
library(arulesViz)
library(datasets)
library("devtools")
install_github("mhahsler/arulesViz", force = TRUE)
library(arulesViz)
############## Trasformiamo il dataset per usare arule####
visite_cliente_date$X1<-NULL
visite_cliente_date$x<-NULL
#read transactions
str(visite_cliente_date)
head(visite_cliente_date)
df_sorted <- visite_cliente_date[order(visite_cliente_date$CodCliente),]
#convert member number to numeric
df_sorted$CodCliente <- as.numeric(df_sorted$CodCliente)
#convert item description to categorical format
df_sorted$museo <- as.factor(df_sorted$museo)
# Have a look at the different types of items
table(df_sorted$museo)
#convert dataframe to transaction format using ddply;
#group all the items that were bought together; by the same customer on the same date
#library(plyr)
df_itemList <- ddply(visite_cliente_date, c("CodCliente","data"), function(df1)paste(df1$museo,collapse = ","))
#remove member number and date
df_itemList$CodCliente <- NULL
df_itemList$data <- NULL
colnames(df_itemList) <- c("itemList")
#write to csv format
write.csv(df_itemList,"ItemList.csv", quote = FALSE, row.names = TRUE)
head(df_itemList)
#load package required
#library(arules)
#convert csv file to basket format
txn = read.transactions(file="ItemList.csv", rm.duplicates= FALSE, format="basket",sep=",",cols=1);
summary(txn)
#remove quotes from transactions
txn@itemInfo$labels <- gsub("\"","",txn@itemInfo$labels)
# Now we can apply the apriori algorithm to the object "txn"
############## Musei più e meno gettonati - ARULE##########
dev.off()
itemFrequencyPlot(txn,
type="relative",
topN=10, # can be changed to the number of interest
horiz=TRUE,
col='steelblue3',
xlab='',
main='Item frequency, relative')
barplot(sort(table(unlist(LIST(txn))))[1:10],
horiz=TRUE,
las=1,
col='steelblue3',
xlab='',
main='Frequency, relative')
############## Ricerca Regola #######
lifts <- crossTable(txn, measure='lift',sort=T)
lifts
itemsets <- apriori(txn,
parameter = list(support=.0001,
minlen=2,
target='frequent' # to mine for itemsets
))
summary(itemsets)
inspect(sort(itemsets, by='support', decreasing = T)[1:10])
quality(itemsets)$lift <- interestMeasure(itemsets, measure='lift', txn)
inspect(sort(itemsets, by ='lift', decreasing = T)[1:10])
#LENGTH = 2
itemsets.2 <- apriori(txn,
parameter = list(support=.0001,
minlen=2,
maxlen=2,
target='frequent' # to mine for itemsets
))
quality(itemsets.2)$lift <- interestMeasure(itemsets.2, measure='lift', txn)
inspect(sort(itemsets.2, by ='lift', decreasing = T)[1:10])
###Looking for the RULE
rules <- apriori(txn,
parameter = list(support=.00001,
confidence=.7,
minlen=2,
target='rules' # to mine for rules
))
summary(rules)
inspect(sort(rules, by='lift', decreasing = T))
inspect(sort(rules, by='support', decreasing = T))
library(arulesViz)
plot(rules,method="graph",interactive=TRUE,shading=NA)
############## Cambiando rhs
item<-attr(txn,which="itemInfo")
dim(item)
names(item)
item$labels
#Regole con RHS i 10 museI più visitati in questione
inspect(sort(subset(rules,
subset=rhs() %in% 'MOSTRA ELLIOTT ERWITT' & confidence > .7),
by = 'confidence',
decreasing = T))
inspect(sort(subset(rules,
subset=rhs %in% 'MUSEO ACCORSI-OMETTO' & confidence > .7),
by = 'confidence',
decreasing = T))
inspect(sort(subset(rules,
subset=rhs %in% 'MUSEO NAZIONALE AUTOMOBILE' & confidence > .7),
by = 'confidence',
decreasing = T))
inspect(sort(subset(rules,
subset=rhs %in% 'MOSTRA ROBERT CAPA - RETROSPETTIVA' & confidence > .7),
by = 'confidence',
decreasing = T))
inspect(sort(subset(rules,
subset=rhs %in% 'PALAZZO REALE' & confidence > .7),
by = 'confidence',
decreasing = T))
inspect(sort(subset(rules,
subset=rhs %in% 'MUSEO EGIZIO' & confidence > .7),
by = 'confidence',
decreasing = T))
inspect(sort(subset(rules,
subset=rhs %in% 'MUSEO NAZIONALE DEL CINEMA' & confidence > .7),
by = 'confidence',
decreasing = T))
inspect(sort(subset(rules,
subset=rhs %in% 'GAM - GALLERIA CIVICA ARTE MODERNA E C' & confidence > .7),
by = 'confidence',
decreasing = T))
inspect(sort(subset(rules,
subset=rhs %in% 'MUSEO CIV. ARTE ANTICA PALAZZO MADAMA' & confidence > .7),
by = 'confidence',
decreasing = T))
inspect(sort(subset(rules,
subset=rhs %in% 'REGGIA DI VENARIA REALE' & confidence > .7),
by = 'confidence',
decreasing = T))
#Plot di rule con rhs i 10 musei top
plot(subset(rules, subset=rhs %in% "MOSTRA ELLIOTT ERWITT" & confidence > .7),method="graph",interactive=TRUE,shading=NA)
#NO MUSEO ACCORSI-OMETTO
#NO MUSEO NAZIONALE AUTOMOBILE
plot(subset(rules, subset=rhs %in% "PALAZZO REALE" & confidence > .99),method="graph",interactive=T,shading=NA)
#troppe
plot(subset(rules, subset=rhs %in% "MUSEO EGIZIO" & confidence > .999),method="graph",interactive=T,shading=NA)
#NO MOSTRA ROBERT CAPA - RETROSPETTIVA
# NO MUSEO NAZIONALE DEL CINEMA
#NO GAM - GALLERIA CIVICA ARTE MODERNA E C
#NO MUSEO CIV. ARTE ANTICA PALAZZO MADAMA
#NO REGGIA DI VENARIA REALE
#Regole con LHS i 10 museI più visitati in questione
inspect(sort(subset(rules,
subset=lhs %in% 'MOSTRA ELLIOTT ERWITT' & confidence > .7),
by = 'confidence',
decreasing = T)[1:10])
inspect(sort(subset(rules,
subset=lhs %in% 'MUSEO ACCORSI-OMETTO' & confidence > .7),
by = 'confidence',
decreasing = T)[1:10])
inspect(sort(subset(rules,
subset=lhs %in% 'MUSEO NAZIONALE AUTOMOBILE' & confidence > .7),
by = 'confidence',
decreasing = T)[1:10])
inspect(sort(subset(rules,
subset=lhs %in% 'MOSTRA ROBERT CAPA - RETROSPETTIVA' & confidence > .7),
by = 'confidence',
decreasing = T)[1:10])
inspect(sort(subset(rules,
subset=lhs %in% 'PALAZZO REALE' & confidence > .7),
by = 'confidence',
decreasing = T)[1:10])
inspect(sort(subset(rules,
subset=lhs %in% 'MUSEO EGIZIO' & confidence > .7),
by = 'confidence',
decreasing = T)[1:10])
inspect(sort(subset(rules,
subset=lhs %in% 'MUSEO NAZIONALE DEL CINEMA' & confidence > .7),
by = 'confidence',
decreasing = T)[1:10])
inspect(sort(subset(rules,
subset=lhs %in% 'GAM - GALLERIA CIVICA ARTE MODERNA E C' & confidence > .7),
by = 'confidence',