I have three IDBs and this is the number of people registered from each
Site female Male Total
IDB_A 46 14 60
IDB_B 17 23 40
IDB_C 79 21 100
Total 142 58 200
And this is the sample I want to select from each site
Site female Male Total
IDB_A 20 6 26
IDB_B 7 10 17
IDB_C 34 9 43
Total 60 25 85
And I used the following code by creating three different strata (one for each site) and then selected a random sample from each stratum
str1 <- FBF_PDM[FBF_PDM$Sites=="IDB_A",]
str2 <- FBF_PDM[FBF_PDM$Sites=="IDB_B", ]
str3 <- FBF_PDM[FBF_PDM$Sites=="IDB_C", ]
sample1 <- str1[sample(1:nrow(str1), 26, replace = FALSE), ]
sample2 <- str2[sample(1:nrow(str2), 17, replace = FALSE), ]
sample3 <- str3[sample(1:nrow(str3), 43, replace = FALSE), ]
overall <- rbind(sample1, sample2, sample3)
write.table(overall, "overall2.csv", row.names = FALSE, sep = ",")
However, Am struggling to specify the gender (male
, female
) to be selected from each site.
Using
Map
you could apply a subsettedsample
function to your desiredplan
. Together with asplit
ed data set by site, provide sample sizes for the respective sex.Data: