-
Notifications
You must be signed in to change notification settings - Fork 1
/
notas.Rmd
189 lines (168 loc) · 5.52 KB
/
notas.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
---
title: "Notas"
output:
html_document:
toc: false
---
```{r setup, include=FALSE, cache=FALSE}
source("setup_knitr.R")
mpf <- function(x) {
x[is.na(x)] <- 0
l <- mean(sort(x[c(1:3, 5:7, 9:12)])[4:10])
p <- mean(x[c(4, 8, 13)])
return(l*4 + p*6)
}
mpfagro <- function(x) {
x[is.na(x)] <- 0
l <- mean(sort(x[c(1:3, 5:7, 9:11)])[4:9])
p <- mean(x[c(4, 8, 12)])
return(l*4 + p*6)
}
rpf <- function(x)
ifelse(x<39, 'Reprovado',
ifelse(x>69, 'Aprovado', 'Final'))
sobe <- function(x){
ifelse(x >= 66 & x <= 69, 70, x)
}
rf <- function(x)
ifelse(x<49, 'Reprovado', 'Aprovado')
sobe2 <- function(x){
ifelse(x >= 48 & x <= 49, 50, x)
}
```
Em breve.
<!---
## Escolha a aba de sua turma {.tabset}
### Eng. Amb. (AMB) & Eng. Ind. Mad. (MD)
```{r engamb, echo=FALSE}
nt <- read.csv2('misc/ambMad.csv')
nt$MediaParcial <- ceiling(apply(as.matrix(nt[-1]), 1, mpf))
nt$MediaParcial <- sobe(nt$MediaParcial)
nt$ResultParcial <- rpf(nt$MediaParcial)
## Verifica se alguem que nao deveria fazer fez o exame
## nt$Exame[nt$ResultParcial != "Final" & !is.na(nt$Exame)]
## Aqui foi permitido, mas coloca NA porque nao adiantou
## nt$Exame[nt$ResultParcial != "Final" & !is.na(nt$Exame)] <- NA
## Quem deveria fazer o exame mas nao fez recebe zero
nt$Exame[nt$ResultParcial == "Final" & is.na(nt$Exame)] <- 0
## Calcula media final
nt$MediaFinal <- ceiling((nt$MediaParcial + (nt$Exame * 10))/2)
nt$MediaFinal <- sobe2(nt$MediaFinal)
nt$MediaFinal[nt$ResultParcial != "Final"] <-
nt$MediaParcial[nt$ResultParcial != "Final"]
nt$ResultFinal <- rf(nt$MediaFinal)
## Arruma ordem das colunas
nt <- nt[, c(1:14, 16:17, 15, 18:19)]
kable(nt, row.names = FALSE)
```
```{r, include=FALSE, eval=FALSE}
fl <- ""
fl.res <- "~/amb.csv"
nomes <- readODS::read_ods(fl)[, c("Matrícula", "Nome")]
str(nomes)
nt2 <- nt[, c("Matrícula", "MediaFinal")]
str(nt2)
res <- merge(nomes, nt2)
res <- res[order(res$Nome), ]
write.csv(res, fl.res, row.names = FALSE)
```
### Biologia
```{r biologia, echo=FALSE}
nt <- read.csv2('misc/bio.csv')
nt$MediaParcial <- ceiling(apply(as.matrix(nt[-1]), 1, mpf))
nt$MediaParcial <- sobe(nt$MediaParcial)
nt$ResultParcial <- rpf(nt$MediaParcial)
## Verifica se alguem que nao deveria fazer fez o exame
## nt$Exame[nt$ResultParcial != "Final" & !is.na(nt$Exame)]
## Tem um que fez mas estava aprovado, coloca NA
nt$Exame[nt$ResultParcial != "Final" & !is.na(nt$Exame)] <- NA
## Quem deveria fazer o exame mas nao fez recebe zero
nt$Exame[nt$ResultParcial == "Final" & is.na(nt$Exame)] <- 0
## Calcula media final
nt$MediaFinal <- ceiling((nt$MediaParcial + (nt$Exame * 10))/2)
nt$MediaFinal <- sobe2(nt$MediaFinal)
nt$MediaFinal[nt$ResultParcial != "Final"] <-
nt$MediaParcial[nt$ResultParcial != "Final"]
nt$ResultFinal <- rf(nt$MediaFinal)
## Arruma ordem das colunas
nt <- nt[, c(1:14, 16:17, 15, 18:19)]
kable(nt, row.names = FALSE)
```
```{r, include=FALSE, eval=FALSE}
fl <- ""
fl.res <- "~/bio.csv"
nomes <- readODS::read_ods(fl)[, c("Matrícula", "Nome")]
str(nomes)
nt2 <- nt[, c("Matrícula", "MediaFinal")]
str(nt2)
res <- merge(nomes, nt2)
res <- res[order(res$Nome), ]
write.csv(res, fl.res, row.names = FALSE)
```
### Agronomia
```{r agronomia, echo=FALSE}
nt <- read.csv2('misc/agro.csv')
nt$MediaParcial <- ceiling(apply(as.matrix(nt[-1]), 1, mpfagro))
nt$MediaParcial <- sobe(nt$MediaParcial)
nt$ResultParcial <- rpf(nt$MediaParcial)
## Verifica se alguem que nao deveria fazer fez o exame
## nt$Exame[nt$ResultParcial != "Final" & !is.na(nt$Exame)]
## Tem um que fez mas estava aprovado, coloca NA
## nt$Exame[nt$ResultParcial != "Final" & !is.na(nt$Exame)] <- NA
## Quem deveria fazer o exame mas nao fez recebe zero
nt$Exame[nt$ResultParcial == "Final" & is.na(nt$Exame)] <- 0
## Calcula media final
nt$MediaFinal <- ceiling((nt$MediaParcial + (nt$Exame * 10))/2)
nt$MediaFinal <- sobe2(nt$MediaFinal)
nt$MediaFinal[nt$ResultParcial != "Final"] <-
nt$MediaParcial[nt$ResultParcial != "Final"]
nt$ResultFinal <- rf(nt$MediaFinal)
## Arruma ordem das colunas
nt <- nt[, c(1:13, 15:16, 14, 17:18)]
kable(nt, row.names = FALSE)
```
```{r, include=FALSE, eval=FALSE}
fl <- ""
fl.res <- "~/agro.csv"
nomes <- readODS::read_ods(fl)[, c("Matrícula", "Nome")]
str(nomes)
nt2 <- nt[, c("Matrícula", "MediaFinal")]
str(nt2)
res <- merge(nomes, nt2)
res <- res[order(res$Nome), ]
write.csv(res, fl.res, row.names = FALSE)
```
### Madeireira Noturno
```{r madeireira, echo=FALSE}
nt <- read.csv2('misc/madNot.csv')
nt$MediaParcial <- ceiling(apply(as.matrix(nt[-1]), 1, mpf))
nt$MediaParcial <- sobe(nt$MediaParcial)
nt$ResultParcial <- rpf(nt$MediaParcial)
## Verifica se alguem que nao deveria fazer fez o exame
## nt$Exame[nt$ResultParcial != "Final" & !is.na(nt$Exame)]
## Aqui foi permitido, mas coloca NA porque nao adiantou
nt$Exame[nt$ResultParcial != "Final" & !is.na(nt$Exame)] <- NA
## Quem deveria fazer o exame mas nao fez recebe zero
nt$Exame[nt$ResultParcial == "Final" & is.na(nt$Exame)] <- 0
## Calcula media final
nt$MediaFinal <- ceiling((nt$MediaParcial + (nt$Exame * 10))/2)
nt$MediaFinal <- sobe2(nt$MediaFinal)
nt$MediaFinal[nt$ResultParcial != "Final"] <-
nt$MediaParcial[nt$ResultParcial != "Final"]
nt$ResultFinal <- rf(nt$MediaFinal)
## Arruma ordem das colunas
nt <- nt[, c(1:14, 16:17, 15, 18:19)]
kable(nt, row.names = FALSE)
```
```{r, include=FALSE, eval=FALSE}
fl <- ""
fl.res <- "~/mad.csv"
nomes <- readODS::read_ods(fl)[, c("Matrícula", "Nome")]
str(nomes)
nt2 <- nt[, c("Matrícula", "MediaFinal")]
str(nt2)
res <- merge(nomes, nt2)
res <- res[order(res$Nome), ]
write.csv(res, fl.res, row.names = FALSE)
```
--->