-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcertificate.R
161 lines (136 loc) · 4.97 KB
/
certificate.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
library(tidyverse)
library(readxl)
library(writexl)
library(ggpubr)
copyBarcode <- function(df) {
df %>%
select(Barcode) %>%
pull %>%
writeClipboard()
}
#---------------------------------------------------------------
#inserisci
Sequenza_giri <- read_excel("Sequenza_giri.xlsx")
Certificate <- read_excel(file.choose(new = TRUE))
Certificate %>% count()
Certificate <- Certificate %>% distinct(Barcode, .keep_all = TRUE) # togli duplicati
Certificate %>% count()
copyBarcode(Certificate)
BusteBuste <- read_excel(file.choose(new = TRUE))
BusteBuste %>% count()
BusteBuste <- BusteBuste %>%
mutate(E = ifelse(!is.na(`Data Altre Azioni`),
`Data Altre Azioni`,
`Data Rec.`)) %>%
mutate(Esito = ifelse(is.na(E), "NO", "SI")) %>%
select(Barcode, Esito)
Certificate <- Certificate %>%
semi_join(BusteBuste, by="Barcode") %>% # elimina barcode non al sistema
left_join(BusteBuste, by = "Barcode") %>% # esito
mutate(Giro = giro) %>%
select(Barcode, Giro, Esito) %>%
left_join(Sequenza_giri) # aggiungi colona sequenza e postino
head(Certificate)
Certificate %>%
write_xlsx(str_c("Certificate.xlsx"))
#----------------------------------------------------------------------------
#aggiorna
Certificate <- read_excel("Certificate.xlsx")
copyBarcode(Certificate)
BusteBuste <- read_excel(file.choose(new = TRUE))
Certificate <- Certificate %>%
select(Barcode, Giro, Seq, Postino)
BusteBuste$Esito <- ifelse(!is.na(BusteBuste$`Data Altre Azioni`),
BusteBuste$`Data Altre Azioni`,
BusteBuste$`Data Rec.`)
BusteBuste <- BusteBuste %>%
select(Barcode, Esito)
Certificate <- Certificate %>%
left_join(BusteBuste, by = "Barcode")
Certificate$Esito <- ifelse(is.na(Certificate$Esito),
"NO",
"SI")
Certificate <- Certificate %>% select(Barcode, Giro, Esito, Seq, Postino)
head(Certificate)
Certificate %>%
write_xlsx(str_c("Certificate.xlsx"))
#-----------------------------------------------------------------------------
#grafico
grCert <- Certificate %>%
group_by(Postino, Esito) %>%
count()
grCert
ggdotchart(grCert, x = "Postino", y = "n",
color = "Esito",
#palette = c("#00AFBB", "#E7B800", "#FC4E07"),
#sorting = "descending",
add = "segments",
rotate = TRUE,
group = "Postino",
#facet.by = "Seq",
dot.size = 10,
label = round(grCert$n),
font.label = list(color = "black", size = 8,
vjust = 0.5),
ggtheme = theme_pubr())
Certificate %>%
write_xlsx("Certificate.xlsx")
#----------------------------------------------------------------
daFinire <- Certificate %>%
filter(Esito == "NO")
daFinire %>%
write_xlsx("daFinire.xlsx")
daFinire <- read_xlsx("daFinire.xlsx")
count(daFinire)
daFinire <- Certificate
grDaFinire <- daFinire %>%
group_by(Postino, Esito) %>%
count()
ggdotchart(grDaFinire, x = "Postino", y = "n",
color = "Esito",
#palette = c("#00AFBB", "#E7B800", "#FC4E07"),
#sorting = "descending",
add = "segments",
rotate = TRUE,
group = "Postino",
#facet.by = "Seq",
dot.size = 10,
label = round(grDaFinire$n),
font.label = list(color = "black", size = 8,
vjust = 0.5),
ggtheme = theme_pubr())
#aggiorna
#------------------------------------------------------
Certificate <- read_excel("daFinire.xlsx")
copyBarcode(Certificate)
#-----------------------------------------------------
aggiorna <- function() {
fileToLoadCertBuste <- file.choose(new = TRUE)
BusteBuste <- read_excel(fileToLoadCertBuste)
Certificate <- Certificate %>%
select(Barcode, Giro, Seq, Postino)
BusteBuste$Esito <- ifelse(!is.na(BusteBuste$`Data Altre Azioni`),
BusteBuste$`Data Altre Azioni`,
BusteBuste$`Data Rec.`)
}
#---------------------------------------------------
fileToLoadCertBuste <- file.choose(new = TRUE)
BusteBuste <- read_excel(fileToLoadCertBuste)
BusteBuste %>% count()
head(Certificate)
Certificate <- Certificate %>%
select(Barcode, Giro, Seq, Postino)
BusteBuste$Esito <- ifelse(!is.na(BusteBuste$`Data Altre Azioni`),
BusteBuste$`Data Altre Azioni`,
BusteBuste$`Data Rec.`)
BusteBuste <- BusteBuste %>%
select(Barcode, Esito)
Certificate <- Certificate %>%
left_join(BusteBuste, by = "Barcode")
Certificate$Esito <- ifelse(is.na(Certificate$Esito),
"NO",
"SI")
Certificate <- Certificate %>% select(Barcode, Giro, Esito, Seq, Postino)
head(Certificate)
#Certificate %>%
# write_xlsx(str_c("Certificate.xlsx"))