-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path3-Teste-Normalidade.R
83 lines (58 loc) · 1.99 KB
/
3-Teste-Normalidade.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
####################################################
# TAILINE NONATO #
# ATIVIDADE 3.2 #
####################################################
# Carregando pacotes ----
if (!require(pacman)) {
install.packages("pacman")
library(pacman)}
pacman::p_load(tidyverse,dplyr,infer,EnvStats)
# AMOSTRA TAMANHO 100 ----
a100 <- read.csv("Outros arquivos/tam100.csv")%>%
filter(replicate == 1)
# NOTA_MT em faixas ----
a100$FAIXAS_MT <- cut(a100$NOTA_MT,
breaks = seq(133,353,44),
labels = c("133 a 176",
"177 a 220",
"221 a 264",
"265 a 308",
"309 a 353"),
include.lowest = TRUE)
# Verificação para normalidade ----
# h0: Nota em matemática segue distribuição normal
# ha: Nota em matemática não segue distribuição normal
Li <- c(133,177,221,265,309)
Ls <- c(176,220,264,308,353)
tabela1 <- a100 %>%
group_by(FAIXAS_MT) %>%
summarise(Ni= n()) %>%
mutate(Li, Ls, Xi=(Li+Ls)/2, XiFi=Xi*Ni,media=sum(XiFi)/sum(Ni), Wi=Ni*(Xi-media)^2,
var=sum(Wi)/sum(Ni),dp=sqrt(var), z=(Ls-media)/dp, p=pnorm(z),pi=p)
for (i in 2:5){
tabela1$pi[i] <- tabela1$p[i]-tabela1$p[i-1]}
tabela1$pi[5] <- 1-tabela1$p[5]
tabela1 <- tabela1 %>%
mutate(Ei=pi*sum(Ni),chi=((Ni-Ei)^2)/Ei)
chi.obs <- sum(tabela1$chi)
alpha <- .05
chi.tab <- qchisq(1-alpha,5-1) #verificar graus de liberdade
chi.obs>chi.tab #se TRUE rejeitar h0
# AMOSTRA TAMANHO 30 ----
a30 <- read.csv("Outros arquivos/tam30.csv")%>%
filter(replicate == 1)
# Shapiro-Wilk ----
# NOTA_LP
gofTest(a30$NOTA_LP, test= "sf")
# NOTA_MT
gofTest(a30$NOTA_MT, test= "sf")
# Anderson-Darling ----
# NOTA_LP
gofTest(a30$NOTA_LP, test= "ad")
# NOTA_MT
gofTest(a30$NOTA_MT, test= "ad")
# Kolmogorov ----
# NOTA_LP
gofTest(a30$NOTA_LP, test= "ks")
# NOTA_MT
gofTest(a30$NOTA_MT, test= "ks")