-
Notifications
You must be signed in to change notification settings - Fork 19
/
muestreos_futbol.R
49 lines (31 loc) · 1.16 KB
/
muestreos_futbol.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
install.packages("faraway")
library(faraway)
?worldcup
head(worldcup)
set.seed(19)
dim(worldcup)
unique(worldcup$Team)
numero_paises_elegidos <- sample(1:32,4,replace = FALSE)
numero_paises_elegidos
paises_elegidos <- unique(worldcup$Team)[numero_paises_elegidos]
paises_elegidos
muestra <- worldcup[worldcup$Team %in% paises_elegidos,]
View(muestra)
############################################################################
pais1 <- worldcup[worldcup$Team == "Slovakia",]
pais2 <- worldcup[worldcup$Team == paises_elegidos[2],]
pais3 <- worldcup[worldcup$Team == paises_elegidos[3],]
pais4 <- worldcup[worldcup$Team == paises_elegidos[4],]
set.seed(28)
dim(pais1)[1]
nrow(pais1)
dim(pais2)
dim(pais3)
dim(pais4)
jugadores_pais1 <- sample(1:dim(pais1)[1],5,replace = FALSE)
jugadores_pais2 <- sample(1:nrow(pais2),5,replace = FALSE)
jugadores_pais3 <- sample(1:dim(pais3)[1],5,replace = FALSE)
jugadores_pais4 <- sample(1:dim(pais4)[1],5,replace = FALSE)
jugadores_pais1
muestra_worldcup <- rbind(pais1[jugadores_pais1,],pais2[jugadores_pais2,],
pais3[jugadores_pais3,],pais4[jugadores_pais4,])