-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathestadistica.R
186 lines (97 loc) · 2.76 KB
/
estadistica.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
## Conjunto de datos: swiss
data(swiss)
summary(swiss)
library(lattice)
splom(swiss, pscale=0, type=c('p', 'smooth'),
groups=swiss$Catholic > 50, xlab='')
## Resumen de información
summary(swiss)
## Media
mean(swiss$Fertility)
colMeans(swiss)
## Desviación Estándar
sd(swiss$Fertility)
sapply(swiss, sd)
## Otras
median(swiss$Fertility)
mad(swiss$Fertility)
IQR(swiss$Fertility)
## Distribución Normal
rnorm(10, mean = 1, sd = .4)
hist(rnorm(1e6, mean = 1, sd = .4))
## Distribución Normal
x <- seq( -5, 5, by =.01)
plot(x, dnorm(x), type = 'l')
## Distribución Uniforme
runif(10, min=-3, max=3)
hist(runif(1e6, min = -3, max = 3))
## Distribución de Weibull
rweibull(n=10, shape = 3, scale = 2)
hist(rweibull(1e6, shape = 3, scale = 2))
## Muestreo aleatorio
x <- seq(1, 100, length = 10)
x
## - Sin reemplazo
sample(x)
sample(x, 5)
## - Con reemplazo
sample(x, 5, replace = TRUE)
## Para muestra única
## - t de Student
t.test(swiss$Fertility, mu=70)
## - Wilcoxon (no paramétrico)
wilcox.test(swiss$Fertility, mu=70)
## Para muestras pareadas
Religion <- ifelse(swiss$Catholic > 50,
'Catholic', 'Protestant')
## - t de Student
t.test(Fertility ~ Religion, data=swiss)
## Para muestras pareadas
## - Wilcoxon
wilcox.test(Fertility ~ Religion, data=swiss)
## Fertilidad y educación
lmFertEdu <- lm(Fertility ~ Education,
data = swiss)
summary(lmFertEdu)
## Fertilidad y educación
coef(lmFertEdu)
fitted.values(lmFertEdu)
## Fertilidad y educación
residuals(lmFertEdu)
## Fertilidad y educación
plot(lmFertEdu, which = 1)
## Fertilidad, educación y religión
lmFertEduCat <- lm(Fertility ~ Education + Catholic,
data = swiss)
summary(lmFertEduCat)
## Lo mismo con =update=
lmFertEduCat <- update(lmFertEdu, . ~ . + Catholic,
data = swiss)
summary(lmFertEduCat)
## Fertilidad, educación, religión y agricultura
lmFertEduCatAgr <- lm(Fertility ~ Education + Catholic + Agriculture,
data = swiss)
summary(lmFertEduCatAgr)
## Lo mismo con =update=
lmFertEduCatAgr <- update(lmFertEduCat,
. ~ . + Agriculture,
data = swiss)
summary(lmFertEduCatAgr)
## Lo mismo con =update=
lmFertEduCatAgr <- update(lmFertEdu,
. ~ . + Catholic + Agriculture,
data = swiss)
summary(lmFertEduCatAgr)
## Comparamos modelos con =anova=
anova(lmFertEdu, lmFertEduCat, lmFertEduCatAgr)
## Fertilidad contra todo
lmFert <- lm(Fertility ~ ., data=swiss)
summary(lmFert)
## Elegir un modelo con =anova=
anova(lmFert)
## Elegir un modelo con =step=
stepFert <- step(lmFert)
## Elegir un modelo
summary(stepFert)
## Elegir un modelo
stepFert$anova