-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGruppo_5_script.R
927 lines (735 loc) · 35.2 KB
/
Gruppo_5_script.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
# LIBRERIE ----
# Dataset
library(readxl)
library(writexl)
# Directory
library(rstudioapi)
# Pre-processing
library(quanteda)
library(quanteda.textstats)
library(SnowballC) # stemming delle keywords
# Driver Analysis
library(dplyr)
library(syuzhet)
library(newsmap)
# Algoritmi
library(naivebayes)
library(randomForest)
library(iml)
library(future)
library(future.callr)
library(e1071)
library(reshape2)
library(cvTools)
library(caret)
# Grafici
library(ggplot2)
library(gridExtra)
library(quanteda.textplots)
# Tabelle
library(kableExtra)
library(flextable)
library(officer)
# 1: DATASET E PULIZIA (Corpus, Dfm) ----
# Directory della cartella condivisa
setwd(dirname(getActiveDocumentContext()$path))
# Dataset
StoresReview <- read_excel("GRUPPO 3-4-5. Industry elettronica.xlsx")
# Aggiunta Primary key a sinistra del dataframe
StoresReview <- cbind(ID = seq(1:nrow(StoresReview)), StoresReview)
table(StoresReview$lang_value) # Presenza di altre lingue
# Decidiamo di prendere in considerazione solo le recensioni in ITALIANO.
# Eliminiamo le recensioni vuote e manteniamo solo quelle in lingua italiana.
Ita_StoresReview <- StoresReview[(StoresReview$lang_value == "it" |
is.na(StoresReview$lang_value) == TRUE) &
is.na(StoresReview$text) == FALSE,]
# Putroppo l'algoritmo di deeplearning ha assegnato valori in lang_value
# diversi da it e NA anche a delle recensioni in italiano, quindi li elimina.
# Creazione corpus
Corpus_Totale <- corpus(Ita_StoresReview)
# Creazione dfm
Dfm_Totale <- dfm(tokens(Corpus_Totale,
remove_punct = TRUE,
remove_symbols = TRUE,
remove_url = TRUE,
remove_numbers = TRUE) %>%
tokens_tolower() %>%
tokens_remove(c(stopwords("italian"))) %>%
tokens_wordstem(language = "italian")) %>%
dfm_trim(min_termfreq = 10,
max_termfreq = 500, # Abbiamo messo un tetto per non considerare i 3 brand
min_docfreq = 2)
# Raggruppiamo i tag e gli hashtag
Parole_Brutte <- colnames(Dfm_Totale)[grepl("^\\s*[#@]", trimws(colnames(Dfm_Totale)))]
# Li togliamo perché non ci saranno utili nell'analisi
Dfm_Totale <- Dfm_Totale[,!(colnames(Dfm_Totale) %in% Parole_Brutte)]
# check
dim(Dfm_Totale) # 3622 testi e 869 features
# 2: ANALISI DEL SENTIMENT CON GLI ALGORITMI ----
table(Ita_StoresReview$social)
# Si nota che nel dataset, le recensioni provengono solo da twitter e places.
# Si nota che la qualità delle recensioni di places è superiore rispetto a quelle di twitter,
# Quindi nell'estrazione del campione con numerosità 200,
# abbiamo deciso di suddivere le due tipologie prendendo 80% da places e il 20 % da twitter.
# 2.1: PREPARAZIONE DEI DATI (training, test, matrici) ----
# Campionamento
set.seed(001)
Training_places <- sample(Corpus_Totale[attr(Corpus_Totale, "docvars")$social == "places"],
size = 160,
replace = FALSE)
set.seed(002)
Training_tweet <- sample(Corpus_Totale[attr(Corpus_Totale, "docvars")$social == "twitter"],
size = 40,
replace = FALSE)
# Corpus per l'analisi manuale
Training_Corpus <- c(Training_tweet, Training_places)
# Corpus per il TEST SET
Test_Corpus <- Corpus_Totale[!(Corpus_Totale %in% Training_Corpus)]
# Verifica se sono complementari
setequal(Corpus_Totale, union(Test_Corpus, Training_Corpus))
# Risposta affermativa, ma si nota una differenza di 22 testi
# Dataframe del Campione per poterlo esportare
Campione <- data.frame(
ID = attr(Training_Corpus, "docvars")$ID,
persona <- rep(c("William","Davide","Maddalena","Giacomo"),each = 50),
Training_Corpus,
sentiment <- NA) # facilita le verifica dopo
names(Campione) <- c("ID","Persona","text","sentiment")
# Rinominazione necessaria per far riconoscere ad RStudio il text field
#Esportare il Campione
#write_xlsx(Campione, "Training Data Grezzo.xlsx") # NON RUNNARE !!!!!!!!!!!!!!!!!!!!!!!
# Importo
Campione <- read_excel("Training Data Grezzo.xlsx")
Campione$sentiment <- ifelse(Campione$sentiment == -1, "Negativo",
ifelse(Campione$sentiment == 0, "Neutro",
"Positivo"))
# Verifica celle vuote.
apply(Campione, 2, function(x) sum(is.na(x)))
# Ogni recensione ha una valutazione
# Conversione in corpus con la variabile del sentiment
Training_Corpus <- corpus(Campione)
# Otteniamo le dfm per training e test "senza" trimming
Dfm_Training <- dfm(tokens(Training_Corpus,
remove_punct = TRUE,
remove_symbols = TRUE,
remove_url = TRUE,
remove_numbers = TRUE) %>%
tokens_tolower() %>%
tokens_remove(c(stopwords("italian"))) %>%
tokens_wordstem(language = "italian")) %>%
dfm_trim(max_termfreq = 500) # I Brand abbassavano l'accuracy
Dfm_Training <- Dfm_Training[,!(colnames(Dfm_Training) %in% Parole_Brutte)]
Dfm_Test <- dfm(tokens(Test_Corpus,
remove_punct = TRUE,
remove_symbols = TRUE,
remove_url = TRUE,
remove_numbers = TRUE) %>%
tokens_tolower() %>%
tokens_remove(c(stopwords("italian"))) %>%
tokens_wordstem(language = "italian")) %>%
dfm_trim(max_termfreq = 500)
Dfm_Test <- Dfm_Test[,!(colnames(Dfm_Test) %in% Parole_Brutte)]
length(Dfm_Training@Dimnames$features) #1235
length(Dfm_Test@Dimnames$features) #8533
# Abbasso il numero di features del test
Dfm_Test <- dfm_match(Dfm_Test,
features = featnames(Dfm_Training))
# Dopo il match lunghezzze pari a 1235
# Verifica
setequal(featnames(Dfm_Training),
featnames(Dfm_Test))
# Creazione matrici per gli algoritmi
Matrice_Training <- as.matrix(Dfm_Training)
Matrice_Test <- as.matrix(Dfm_Test)
# Conversione del vettore sentiment in factor
Dfm_Training@docvars$sentiment <- as.factor(Dfm_Training@docvars$sentiment)
# 2.2: TRAINING E CLASSIFICAZIONE (training e prediction) ----
# ALGORITMO NAIVE BAYES
set.seed(123)
NaiveBayesModel <- multinomial_naive_bayes(x=Matrice_Training,
y=Dfm_Training@docvars$sentiment,
laplace = 1)
# Distribuzione del sentiment sul training
summary(NaiveBayesModel)
# Predizione sul test set
Test_predictedNB <- predict(NaiveBayesModel,
Matrice_Test)
# frequenze assolute sui 3400 testi del test
table(Test_predictedNB)
# ALGORITMO RANDOM FOREST
set.seed(150)
RF <- randomForest(y= Dfm_Training@docvars$sentiment,
x= Matrice_Training,
importance=TRUE,
do.trace=FALSE,
ntree=500) # numero standard
RF # Error rate: 31%
plot(RF, type = "l", col = c("black", "steelblue4", "violetred4", "springgreen4"), lty = 1,
main = "Errori del modello Random Forest: variabile sentiment") +
legend("topright", horiz = FALSE, cex = 0.7, title = "Errori:",
fill = c("springgreen4", "black", "steelblue4", "violetred4"),
legend = c("Positivo", "Medio", "Negativo", "Neutro"))
# Salvo tutti gli errori relativi al numero dei trees
Errori <- as.data.frame(RF$err.rate)
# Identifico il PRIMO numero di ntrees con l'errore minimo
which.min(Errori$OOB) # 23
# Rifacciamo con ntree = 23
set.seed(150)
RF <- randomForest(y= Dfm_Training@docvars$sentiment,
x= Matrice_Training,
importance=TRUE,
do.trace=FALSE,
ntree=23)
RF # 28% error rate
Test_predictedRF <- predict(RF, Matrice_Test ,type="class")
table(Test_predictedRF)
# SUPPORT VECTOR
set.seed(175)
SupportVectorMachine <- svm(
y= Dfm_Training@docvars$sentiment,
x=Matrice_Training, kernel='linear', cost = 1)
length(SupportVectorMachine$index) # 173 support vector
Test_predictedSV <- predict(SupportVectorMachine, Matrice_Test)
table(Test_predictedSV)
# frequenze relative dei diversi algoritmi
results <- as.data.frame(rbind(prop.table(table(Test_predictedNB)),
prop.table(table(Test_predictedRF)),
prop.table(table(Test_predictedSV))))
results$algorithm <- c("Naive Bayes", "Random Forest", "Support Vector Machine")
df.long<-melt(results,id.vars=c("algorithm"))
# Grafico che compara i risultati dei tre algoritmi
ggplot(df.long,aes(algorithm,value,fill=variable))+
geom_bar(position="dodge",stat="identity") + scale_fill_manual(values = c("red", "yellow2", "darkgreen")) +
labs(title = "Comparazione delle predizioni") +
theme(axis.text.x = element_text(color="#993333", angle=90)) + coord_flip() +
ylab(label="Proporzione delle categorie nel test set") + xlab("Algoritmi") +
guides(fill=guide_legend(title="Categorie di \nsentiment")) +
theme(plot.title = element_text(color = "black", size = 12, face = "plain"),
axis.title=element_text(size=11,face="plain"),
axis.text= element_text(size =10, face = "italic")
)
# 2.3: CROSS VALIDATION ----
# Abbiamo i tre risultati, capiamo quale algoritmo performa meglio
Matrice_Training2 <- Matrice_Training
set.seed(200)
k <- 5
folds <- cvFolds(NROW(Matrice_Training2), K = k)
for(i in 1:k){
Matrice_Training <-
Matrice_Training2 [folds$subsets[folds$which != i], ]
ValidationSet <-
Matrice_Training2 [folds$subsets[folds$which == i], ]
set.seed(200)
NaiveBayesModel <- multinomial_naive_bayes(
y= Dfm_Training[folds$subsets[folds$which != i], ]
@docvars$sentiment ,
x=Matrice_Training, laplace = 1)
Predictions_NB <- predict(NaiveBayesModel,
newdata = ValidationSet,
type = "class")
class_table <- table("Predictions"= Predictions_NB,
"Actual"=Dfm_Training[folds$subsets[folds$which == i], ]@docvars$sentiment)
print(class_table)
df<-confusionMatrix( class_table, mode = "everything")
df_measures_NB<-paste0("conf.mat.nb",i)
assign(df_measures_NB,df)
}
NB_Prediction <- data.frame(col1=vector(), col2=vector(), col3=vector(), col4=vector())
#Riempiamo il dataset con i valori di accuracy e f1
for(i in mget(ls(pattern = "conf.mat.nb")) ) {
Accuracy <-(i)$overall[1]
p <- as.data.frame((i)$byClass)
F1_negative <- p$F1[1]
F1_neutral <- p$F1[2]
F1_positive <- p$F1[3]
NB_Prediction <- rbind(NB_Prediction , cbind(Accuracy , F1_negative ,
F1_neutral, F1_positive ))
}
str(NB_Prediction) # Si nota la presenza di NA
NB_Prediction [is.na(NB_Prediction )] <- 0
AverageAccuracy_NB <- mean(NB_Prediction[, 1] )
AverageF1_NB<- mean(colMeans(NB_Prediction[-1] ))
# ACCURACY BAYES
AverageAccuracy_NB # 81,5%
AverageF1_NB # 72,7%
# RANDOM FOREST
for(i in 1:k){
Matrice_Training <-
Matrice_Training2 [folds$subsets[folds$which != i], ]
ValidationSet <-
Matrice_Training2 [folds$subsets[folds$which == i], ]
set.seed(250)
RandomForest <- randomForest(
y= Dfm_Training[folds$subsets[folds$which != i], ]
@docvars$sentiment ,
x=Matrice_Training, do.trace=FALSE, ntree=23)
Predictions_RF <- predict(RandomForest,
newdata= ValidationSet,
type="class")
class_table <- table("Predictions"= Predictions_RF,
"Actual"=Dfm_Training[folds$subsets[folds$which == i], ]@docvars$sentiment)
print(class_table)
df<-confusionMatrix( class_table, mode = "everything")
df_measures_RF<-paste0("conf.mat.rf",i)
assign(df_measures_RF,df)
}
RF_Predictions <- data.frame(col1=vector(), col2=vector(), col3=vector(), col4 = vector())
for(i in mget(ls(pattern = "conf.mat.rf")) ) {
Accuracy <-(i)$overall[1]
p <- as.data.frame((i)$byClass)
F1_negative <- p$F1[1]
F1_neutral <- p$F1[2]
F1_positive <- p$F1[3]
RF_Predictions <- rbind(RF_Predictions , cbind(Accuracy , F1_negative ,
F1_neutral, F1_positive ))
}
str(RF_Predictions) # Presenza NA
RF_Predictions [is.na(RF_Predictions )] <- 0
AverageAccuracy_RF <- mean(RF_Predictions[, 1] )
AverageF1_RF<- mean(colMeans(RF_Predictions[-1] ))
# ACCURACY RANDOM FOREST
AverageAccuracy_RF # 67,5%
AverageF1_RF #52,6%
# SUPPORT VECTOR MACHINE
for(i in 1:k){
Matrice_Training <-
Matrice_Training2 [folds$subsets[folds$which != i], ]
ValidationSet <-
Matrice_Training2 [folds$subsets[folds$which == i], ]
set.seed(300)
SupportVectorMachine<- svm(
y= Dfm_Training[folds$subsets[folds$which != i], ]
@docvars$sentiment,
x=Matrice_Training, kernel='linear', cost = 1)
Prediction_SVM <- predict(SupportVectorMachine,
newdata=ValidationSet)
class_table <- table("Predictions"= Prediction_SVM,
"Actual"=Dfm_Training[folds$subsets[folds$which == i], ]@docvars$sentiment)
print(class_table)
df<-confusionMatrix( class_table, mode = "everything")
df_measures_SVM<-paste0("conf.mat.sv",i)
assign(df_measures_SVM,df)
}
SVM_Prediction <- data.frame(col1=vector(), col2=vector(), col3=vector(), col4=vector())
#Riempiamo il dataframe
for(i in mget(ls(pattern = "conf.mat.sv")) ) {
Accuracy <-(i)$overall[1]
p <- as.data.frame((i)$byClass)
F1_negative <- p$F1[1]
F1_neutral <- p$F1[2]
F1_positive <- p$F1[3]
SVM_Prediction <- rbind(SVM_Prediction , cbind(Accuracy , F1_negative ,
F1_neutral, F1_positive ))
}
str(SVM_Prediction) # Presenza NA
SVM_Prediction [is.na(SVM_Prediction)] <- 0
#Calcoliamo i valori medi
AverageAccuracy_SVM <- mean(SVM_Prediction[, 1] )
AverageF1_SVM<- mean(colMeans(SVM_Prediction[-1] ))
# ACCURACY SUPPORT VECTOR MACHINE
AverageAccuracy_SVM # 73%
AverageF1_SVM # 62,2%
# CONFRONTO
AccNB <- as.data.frame(AverageAccuracy_NB )
colnames(AccNB)[1] <- "NB"
#Creo un dataframe per RF
AccRF <- as.data.frame(AverageAccuracy_RF )
#Rinomino la colonna
colnames(AccRF)[1] <- "RF"
#Creo un dataframe per SVM
AccSVM<- as.data.frame(AverageAccuracy_SVM )
#Rinomino la colonna
colnames(AccSVM)[1] <- "SVM"
#Unisco in un unico dataframe i valori di accuracy dei tre modelli
Accuracy_models <- cbind(AccNB, AccRF, AccSVM)
Accuracy_models # Accuracy Bayes superiore
Accuracy_models_Melt <-melt(Accuracy_models)
# Si salva il primo grafico per il gird arrange
plot_accuracy <- ggplot(Accuracy_models_Melt, aes(x=variable, y=value, color = variable)) +
geom_boxplot() + xlab("Algorithm") + ylab(label="Values of accuracy") +
labs(title = "Cross-validation with k =5: values of accuracy") + coord_flip() +
theme_bw() +
guides(color=guide_legend(title="Algorithms")) +
theme(plot.title = element_text(color = "black", size = 12, face = "italic"),
axis.title.x =element_text(size=12,face="bold"),
axis.title.y =element_text(size=12, face = "plain"),
axis.text= element_text(size =10, face = "italic")
)
F1NB <- as.data.frame(AverageF1_NB)
colnames(F1NB)[1] <- "NB"
#RF
F1RF<- as.data.frame(AverageF1_RF )
colnames(F1RF)[1] <- "RF"
#SVM
F1SVM <- as.data.frame(AverageF1_SVM)
colnames(F1SVM)[1] <- "SVM"
#DATAFRAME
f1_models <- cbind(F1NB, F1RF, F1SVM)
f1_models # F1 score di Bayes superiore
f1_models_melt <-melt(f1_models)
str(f1_models_melt)
# Si salva il secondo grafico
plot_f1 <- ggplot(f1_models_melt, aes(x=variable, y=value, color = variable)) +
geom_boxplot() + xlab("Algorithm") + ylab(label="Values of f1") +
labs(title = "Cross-validation with k =5: values of f1") + coord_flip() +
theme_bw() +
guides(color=guide_legend(title="Algorithms")) +
theme(plot.title = element_text(color = "black", size = 12, face = "italic"),
axis.title.x =element_text(size=12,face="bold"),
axis.title.y =element_text(size=12, face = "plain"),
axis.text= element_text(size =10, face = "italic")
)
grid.arrange(plot_accuracy, plot_f1, nrow=2) #bayes
# Creo dataframe che salva le predizioni dei tre algoritmi.
Esiti_algo_Test <- data.frame(
ID = attr(Test_Corpus, "docvars")$ID,
social = attr(Test_Corpus, "docvars")$social,
text = Test_Corpus,
Bayes = Test_predictedNB,
RF = Test_predictedRF,
SVM = Test_predictedSV
)
# Risultati dell'algoritmo vincitore
Df_sentiment <- data.frame(
ID = c(Training_Corpus$ID, Test_Corpus$ID),
NB_sentiment = c(Campione$sentiment, as.vector(Test_predictedNB))
)
# Mettiamo il sentiment nel dataframe di partenza
Ita_StoresReview <- merge(Ita_StoresReview, Df_sentiment, by='ID')
# Abbiamo voluto campionare una sessantina di testi nel test set
# per rifare l'analisi manuale e fare una stima dell'accuratezza dei tre algoritmi
set.seed(007)
AAP_test_data_places <- Esiti_algo_Test %>%
filter(social == 'places') %>%
slice_sample(n=40, replace = FALSE)
# Con questo codice estraggo 40 random samples dal testing data con social == places
set.seed(007)
AAP_test_data_twitter <- Esiti_algo_Test %>%
filter(social == 'twitter') %>%
slice_sample(n=20, replace = FALSE)
# Faremo il bind manuale su excel
#write_xlsx(AAP_test_data_places, 'aap_sample_places.xlsx')
#write_xlsx(AAP_test_data_twitter, 'aap_sample_twitter.xlsx')
AAP_test_data <- read_excel("aap_reviewed.xlsx")
AAP_test_data$human_val <- ifelse(AAP_test_data$human_val == -1, "Negativo",
ifelse(AAP_test_data$human_val == 0, "Neutro",
"Positivo"))
AAP_confronto <- c(Bayes = sum(AAP_test_data$Test_predictedNB == AAP_test_data$human_val),
RF = sum(AAP_test_data$Test_predictedRF == AAP_test_data$human_val),
SV = sum(AAP_test_data$Test_predictedSV == AAP_test_data$human_val))
# Dataframe che contiene freq assoluta e relativa sull'analisi manuale effettuata sul campione del test set.
AAP_confronto <- data.frame(
Bayes = c(sum(AAP_test_data$Test_predictedNB == AAP_test_data$human_val),
sum(AAP_test_data$Test_predictedNB == AAP_test_data$human_val)/60*100),
RF = c(sum(AAP_test_data$Test_predictedRF == AAP_test_data$human_val),
sum(AAP_test_data$Test_predictedRF == AAP_test_data$human_val)/60*100),
SV = c(sum(AAP_test_data$Test_predictedSV == AAP_test_data$human_val),
sum(AAP_test_data$Test_predictedSV == AAP_test_data$human_val)/60*100)
)
rownames(AAP_confronto) <- c("Freq Assoluta", "Freq Relativa")
# 3: DRIVER ANALYSIS ----
# Frequenze delle caratteristiche del Corpus
apply(textstat_summary(Corpus_Totale)[,2:11], 2, sum)
# Notiamo presenza di emoji, tag, urls e altri elementi disturbanti per l'analisi
# Abbiamo voluto prendere in considerazione solo le recensioni di places
# per individuare i possibili driver del dataset.
Dfm_Places <- dfm(tokens(Corpus_Totale[attr(Corpus_Totale, "docvars")$social == "places"],
remove_punct = TRUE,
remove_symbols = TRUE,
remove_url = TRUE,
remove_numbers = TRUE) %>%
tokens_tolower() %>%
tokens_remove(c(stopwords("italian"))) %>%
tokens_wordstem(language = "italian")) %>%
dfm_trim(min_termfreq = 10,
max_termfreq = 500, # Abbiamo messo un tetto per non considerare i 3 brand
min_docfreq = 2)
# RILEVAZIONE DELLE KEYWORDS
# Top parole del DFM
topfeatures(Dfm_Places,50)
# Vogliamo rappresentare le top 50 sui grafici
Parole_Popolari <- textstat_frequency(Dfm_Places, n =50)
Parole_Popolari$feature <- with(Parole_Popolari, reorder(feature, frequency))
ggplot(Parole_Popolari, aes(x=frequency, y=feature)) +
geom_point(size = 1.5, color = "Darkorange2") +
theme_bw() +
theme(axis.text.x = element_text(angle=360, hjust=1)) +
labs(x = "Frequenza", y = "Features",
title = "Le 50 parole più frequenti nelle recensioni") +
theme(plot.title = element_text(color = "Darkorange2", size = 11, face = "bold"),
plot.subtitle = element_text(color = "black", size = 11, face = "italic" ))
textplot_wordcloud(Dfm_Places,
min_size = 1.5,
max_size = 4,
min.count = 10,
max_words = 50,
random.order = FALSE,
random_color = FALSE,
rotation = 0, #rotazione delle parole
colors = RColorBrewer::brewer.pal(8,"Dark2"))
# Abbiamo individuato 4 possibili driver: Prezzo, Servizio, Ordini e Location
# 3.1: KEYWORDS E DRIVER ----
# Verrà usato sia per il dizionario che per il semi-supervisionato
# Abbiamo generato delle ulteriori keywords di contesto
sapply([email protected], length)
Driver@
str(Driver)
Driver <- dictionary(list(prezzo = c("promozione", "risparmio", "qualità", "prezzo", "economicità",
"economico", "concorrenziali", "sconto",
"offerta", "budget", "ragionevole","costo", "sostenibile",
"convenienti", "sottocosto", "eccezional", "super", "miglior", "ben",
"top", "futur", "offert", "convenient", "risparm", "assurd", "super", "pazzesc", "gratis"),
servizio = c("rapidità", "Empatia", "professionale", "supporto",
"risoluzione","problemi", "cordialità", "assistenza", "vendita",
"immediata", "efficienza", "cortese", "reclami",
"competenza", "cliente", "flessibilità", "tempestività",
"servizio", "accoglienza", "caloroso", "gentile", "personal", "competente", "disponibile", "male",
"lento", "disorganizzato", "disordinato", "scortese", "cafone", "garanzia", "reso", "account",
"signor", "reparto", "richiest", "graz", "eccezional", "inform", "miglior", "ragazz",
"rispost", "gent", "gentilissim", "rispett", "competent", "bell", "ringraz", "aiut",
"pront", "addett", "pessim", "pazienz", "ore", "benissim", "purtropp", "purtropp", "problem",
"incompetent", "rivolg", "compl", "ben", "consigl", "prossim", "buon", "gentilezz", "educ",
"simpat", "dispon", "attenzion", "qualif", "aspett", "grandissim", "disponibil", "esigent", "top",
"giovan", "assist", "futur", "risolt", "bravissim", "commess", "brav", "spieg", "dubb", "vergogn",
"inutil", "maleduc", "pochissim", "signorin", "bellissim", "perfett", "attent", "super",
"pazzesc", "soluzion", "difett", "truff", "qualit", "normal", "scortes", "intelligent"),
ordini = c("transazione", "acquisto", "pagamento", "tempo", "consegna",
"ordine", "opzioni", "modalità", "ritiro",
"rimborso", "conferma", "tracciabilità", "facilità",
"catalogo", "online","checkout", "garanzia", "reso", "account", "bell", "pessim", "nuov",
"benissim", "purtropp", "problem", "ben", "buon", "aspett", "attesa", "top", "futur", "risolt",
"vergogn", "inutil", "bellissim", "assurd", "super", "difett", "truff"),
location = c("accesso", "facilitato", "ampio", "parcheggio", "zona", "geografica",
"ambiente", "accogliente", "strutture", "moderne",
"punto", "vendita", "facilità", "raggiungimento", "accessibilità", "disabili",
"prossimità","area", "centrale", "sicurezza", "atmosfera", "piacevole", "posizione","strategica",
"illuminata", "spazio", "facile",
"tranquilla", "negozio", "posto", "affollato", "piccolo", "disordinato", "bell", "ben")))
# Funzione che applicherà lo stemming sulle keywords del driver
stem_words <- function(words) {
stemmed_words <- wordStem(words, language = "italian")
return(stemmed_words)
}
Driver$prezzo <- stem_words(Driver$prezzo)
Driver$servizio <- stem_words(Driver$servizio)
Driver$ordini <- stem_words(Driver$ordini)
Driver$location <- stem_words(Driver$location)
Driver_Review <- dfm_lookup(Dfm_Totale,Driver)
Driver_Conv_Rev <- convert(Driver_Review, to = "data.frame")
Driver_Conv_Rev <- cbind(ID = Dfm_Totale@docvars$ID, Driver_Conv_Rev)
apply(Driver_Conv_Rev[,3:6],2,sum) # Numero di testi etichettati per driver
prop.table(apply(Driver_Conv_Rev[,3:6],2,sum)) # Distribuzione dei driver
DriverAnalysis <- full_join(Ita_StoresReview, Driver_Conv_Rev)
# 3.2: SENTIMENT ANALYSIS ----
Dizionario <- get_sentiment_dictionary(dictionary = 'nrc',
language = "italian")
Store_reviews_sentiment <- get_sentiment(Corpus_Totale,
method = 'nrc', language = "italian")
DriverAnalysis$sentimentAnalysis <- Store_reviews_sentiment
DriverAnalysis$sentiment_labels <- ifelse(DriverAnalysis$sentimentAnalysis <= 0, "Negativo", "Positivo")
# GGrafico che dati i 5 livelli di rating mostra la suddivisione nel sentiment
RatingXsentiment <- table(DriverAnalysis$sentiment_labels, DriverAnalysis$score_rating)
RatingXsentiment <- as.data.frame(RatingXsentiment)
colnames(RatingXsentiment) <- c("Sentiment","Rating","Freq")
ggplot(RatingXsentiment,aes(Rating, Freq, fill=Sentiment))+
geom_bar(position="stack",stat="identity") +
scale_fill_manual(values = c("#CA3432", "darkseagreen")) +
labs(title = "Sentiment rispetto al rating") +
theme(axis.text.x = element_text(color="#993333", angle=90)) +
coord_flip() +
ylab(label="Frequenza assoluta") +
xlab("Rating") +
guides(fill=guide_legend(title="Sentiment:")) +
theme(plot.title = element_text(color = "black", size = 12, face = "plain"),
plot.subtitle = element_text(face = "plain"),
axis.title=element_text(size=10,face="plain"),
axis.text= element_text(size =10, face = "italic"))
# 3.3: EMOTION ANALYSIS ----
EmotionAnalysis <- get_nrc_sentiment(Corpus_Totale)
# Grafico che mostra le emozioni rilevate e la loro distribuzione
barplot(
sort(colSums(prop.table(EmotionAnalysis[, 1:8]))),
horiz = TRUE,
cex.names = 0.7,
las = 1,
main = "Le emozioni nel corpus", xlab="Proporzioni",
col = "#8C96C6"
)
# 3.4: NEWSMAP ----
DriverAnalysis_SemiSupervisedApproach <- dfm(tokens(Corpus_Totale,
remove_punct = TRUE,
remove_symbols = TRUE,
remove_url = TRUE,
remove_numbers = TRUE) %>%
tokens_tolower() %>%
tokens_wordstem(language = "italian") %>%
tokens_lookup(dictionary = Driver))
TextModel <- textmodel_newsmap(Dfm_Totale,
DriverAnalysis_SemiSupervisedApproach)
DriverAnalysis$SemiSupervised <- predict(TextModel)
round(prop.table(table(predict(TextModel))), 2)*100 # % driver nel dataset
DriverAnalysis$Dizionario <- ifelse(DriverAnalysis$prezzo > 0, "Prezzo",
ifelse(DriverAnalysis$servizio > 0, "Servizio",
ifelse(DriverAnalysis$ordini > 0, "Ordini",
ifelse(DriverAnalysis$location > 0, "Location", "NA"))))
ConfrontoRisultati <- filter(DriverAnalysis, Dizionario == "NA")
# Colonna inutile
DriverAnalysis$doc_id <- NULL
# 4 ----
apply(DriverAnalysis, 2, function(x) sum(is.na(x)))
# Vogliamo basarci sui risultati dell'algoritmo semi-supervisionato,
# ma si nota la presenza di NA nelle colonne Player e del semi-supervisionato
DriverAnalysis <- DriverAnalysis[is.na(DriverAnalysis$SemiSupervised) == FALSE &
is.na(DriverAnalysis$Player) == FALSE,]
# TABELLA GENERALE
# Recensioni, rating e sentiment in base al brand
Generale <- DriverAnalysis %>%
group_by(Player) %>%
summarise(n_rec = length(text),
media_rating = round(mean(score_rating,na.rm = TRUE),2),
media_sentiment = round(mean(sentimentAnalysis),2))
# Pre ottenere una tabella a colori abbiamo usato una funzione alternativa
Generale_ft <- flextable(Generale)
Generale_ft |>
bg(j = c("media_rating","media_sentiment"),
bg = scales::col_quantile(palette = c("wheat", "red"), domain =NULL))
# Colora in base al peso del valore
# TABELLA DRIVER SENTIMENT
# L'obiettivo è di "ripetere" 4 volte la tabella di prima, ma relativi ai singoli driver
for (i in levels(DriverAnalysis$SemiSupervised)){
df_i <- DriverAnalysis %>%
filter(SemiSupervised == i)
summary_i <- df_i %>%
group_by(Player) %>%
summarise(n_rev = length(text),
media_rating = round(mean(score_rating,na.rm = TRUE),2),
media_sentiment = round(mean(sentimentAnalysis),2))
Generale <- inner_join(Generale,summary_i,
by = "Player")
} # Si appicica a destra della tabella precedente per avere una paronamica su tutti i driver
names(Generale) <- c("Player", rep(c("Numero reviews","Media score","Media sentiment"),
length(levels(DriverAnalysis$SemiSupervised))+1))
# TABELLA DRIVER RATING
kbl(Generale) %>%
kable_classic() %>%
column_spec(c(4,7,10,13,16), color = "white",
background = spec_color(Generale$`Media sentiment`, end =1, palette = c("red","orange","green"))) %>%
column_spec(c(3,6,9,12,15), color = "white",
background = spec_color(Generale$`Media score`, end =1, palette = c("red", "orange","green"))) %>%
add_header_above(c(" " = 1," Generale" = 3, "Prezzo" = 3,"Servizio" = 3,"Ordini" = 3,"Location" = 3))
# GRAFICI
# check
table(Ita_StoresReview$score_rating, Ita_StoresReview$NB_sentiment)
# DISTRIBUZIONE SENTIMENT PER BRAND
Brand_sentiment <- as.data.frame(table(Ita_StoresReview$Player, Ita_StoresReview$NB_sentiment))
Brand_sentiment <- rename(
Brand_sentiment,
"Brand" = "Var1",
"Sentiment" = "Var2"
)
ggplot(Brand_sentiment,aes(x = Brand, y = Freq, fill = Sentiment))+
geom_bar(position="stack",stat="identity") +
scale_fill_manual(values = c("#993333", "grey", "darkseagreen")) +
labs(title = "Come varia il sentiment nei diversi brand?") +
coord_flip() +
ylab(label="Valori assoluti") +
xlab("") +
#la legenda viene generata in modo automatico
guides(fill=guide_legend(title="Sentiment")) +
theme(plot.title = element_text(color = "black", size = 12, face = "bold"),
plot.subtitle = element_text(face = "plain"),
axis.title=element_text(size=10,face="plain"),
axis.text= element_text(size =10, face = "italic"),
axis.text.x = element_text(color="#993333", angle=45))
# DISTRIBUZIONE RATING PER BRAND
Brand_rating <- as.data.frame(table(Ita_StoresReview$Player, Ita_StoresReview$score_rating))
Brand_rating <- rename(
Brand_rating,
"Brand" = "Var1",
"Rating" = "Var2"
)
ggplot(Brand_rating,aes(x = Brand, y = Freq, fill = Rating))+
geom_bar(position="dodge",stat="identity") +
scale_fill_manual(values = c("#993333", "#FF5733", "#FFC300", "#DAF7A6", "#7FFF00")) +
labs(title = "Come varia il rating nei diversi brand?") +
#rappresentiamo le barre in orizzontale (inverte gli assi)
#coord_flip() +
ylab(label="Valori assoluti") +
xlab("") +
#la legenda viene generata in modo automatico
guides(fill=guide_legend(title="Rating")) +
theme(plot.title = element_text(color = "black", size = 12, face = "bold"),
plot.subtitle = element_text(face = "plain"),
axis.title=element_text(size=10,face="plain"),
axis.text= element_text(size =10, face = "italic"),
axis.text.x = element_text(color="#993333", angle=45))
# RELAZIONE TRA SENTIMENT E RATING
cross_tab <- table(Ita_StoresReview$NB_sentiment, Ita_StoresReview$score_rating)
# Creazione di un grafico a matrice di confusione
heatmap(cross_tab, col = colorRampPalette(c("blue", "white", "red"))(256), main = "Matrice di confusione tra Sentiment e Rating")
legend("topright", legend = c("Basso", "Medio", "Alto"), fill = c("blue", "white", "red"), title = "Rating")
# GRAFICI
# TORTE PER OGNI BRAND CHE MOSTRA LA DISTRIBUZIONE DEI DRIVER
Mediaworld_driver <- DriverAnalysis[DriverAnalysis$Player == "Mediaworld",c(15,16)]
Mediaworld_driver <- as.data.frame(table(Mediaworld_driver$sentiment_labels, Mediaworld_driver$SemiSupervised))
Unieuro_driver <- DriverAnalysis[DriverAnalysis$Player == "Unieuro",c(15,16)]
Unieuro_driver <- as.data.frame(table(Unieuro_driver$sentiment_labels, Unieuro_driver$SemiSupervised))
Euronics_driver <- DriverAnalysis[DriverAnalysis$Player == "Euronics",c(15,16)]
Euronics_driver <- as.data.frame(table(Euronics_driver$sentiment_labels, Euronics_driver$SemiSupervised))
Mediaworld_driver <- rename(
Mediaworld_driver,
"Sentiment" = "Var1",
"Driver" = "Var2"
)
Unieuro_driver <- rename(
Unieuro_driver,
"Sentiment" = "Var1",
"Driver" = "Var2"
)
Euronics_driver <- rename(
Euronics_driver,
"Sentiment" = "Var1",
"Driver" = "Var2"
)
ggplot(Mediaworld_driver,aes(x = Driver, y = Freq, fill = Sentiment))+
geom_bar(position="stack",stat="identity") +
scale_fill_manual(values = c("#993333", "darkseagreen")) +
labs(title = "Mediaworld",
subtitle = "Come varia il sentiment nei diversi driver?") +
ylab(label="Valori assoluti") +
xlab("") +
#la legenda viene generata in modo automatico
guides(fill=guide_legend(title="Sentiment")) +
theme(plot.title = element_text(color = "black", size = 12, face = "bold"),
plot.subtitle = element_text(face = "plain"),
axis.title=element_text(size=10,face="plain"),
axis.text= element_text(size =10, face = "italic"),
axis.text.x = element_text(color="#993333", angle=45))
ggplot(Unieuro_driver,aes(x = Driver, y = Freq, fill = Sentiment))+
geom_bar(position="stack",stat="identity") +
scale_fill_manual(values = c("#993333", "darkseagreen")) +
labs(title = "Unieuro",
subtitle = "Come varia il sentiment nei diversi driver?") +
ylab(label="Valori assoluti") +
xlab("") +
#la legenda viene generata in modo automatico
guides(fill=guide_legend(title="Sentiment")) +
theme(plot.title = element_text(color = "black", size = 12, face = "bold"),
plot.subtitle = element_text(face = "plain"),
axis.title=element_text(size=10,face="plain"),
axis.text= element_text(size =10, face = "italic"),
axis.text.x = element_text(color="#993333", angle=45))
ggplot(Euronics_driver,aes(x = Driver, y = Freq, fill = Sentiment))+
geom_bar(position="stack",stat="identity") +
scale_fill_manual(values = c("#993333", "darkseagreen")) +
labs(title = "Euronics",
subtitle = "Come varia il sentiment nei diversi driver?") +
ylab(label="Valori assoluti") +
xlab("") +
#la legenda viene generata in modo automatico
guides(fill=guide_legend(title="Sentiment")) +
theme(plot.title = element_text(color = "black", size = 12, face = "bold"),
plot.subtitle = element_text(face = "plain"),
axis.title=element_text(size=10,face="plain"),
axis.text= element_text(size =10, face = "italic"),
axis.text.x = element_text(color="#993333", angle=45))