SampleTwins.Rd
Draw a twin sample out of a population for a given recordset, by matching some strata criteria.
SampleTwins(x, stratanames = NULL, twins,
method = c("srswor", "srswr", "poisson", "systematic"),
pik, description = FALSE)
the data to draw the sample from
the stratanames to use
the twin sample
method to select units; the following methods are implemented: simple random
sampling without replacement (srswor), simple random sampling with replacement (srswr),
Poisson sampling (poisson), systematic sampling (systematic); if "method" is missing,
the default method is "srswor". See Strata
.
vector of inclusion probabilities or auxiliary information used to compute them; this argument is only used for unequal probability sampling (Poisson and systematic). If an auxiliary information is provided, the function uses the inclusionprobabilities function for computing these probabilities. If the method is "srswr" and the sample size is larger than the population size, this vector is normalized to one.
a message is printed if its value is TRUE; the message gives the number of selected units and the number of the units in the population. By default, the value is FALSE.
The function produces an object, which contains the following information:
the identifier of the selected units.
the unit stratum.
the final unit inclusion probability.
m <- rbind(matrix(rep("nc",165), 165, 1, byrow=TRUE),
matrix(rep("sc", 70), 70, 1, byrow=TRUE))
m <- cbind.data.frame(m, c(rep(1, 100), rep(2,50), rep(3,15),
rep(1,30), rep(2,40)), 1000*runif(235))
names(m) <- c("state","region","income")
# this would be our sample to be reproduced by a twin sample
d.smp <- m[sample(nrow(m), size=10, replace=TRUE),]
# draw the sample
s <- SampleTwins(x = m, stratanames=c("state","region"), twins = d.smp, method="srswor")
#> Warning: Could not find a twin for all records. Enlighten the restrictions!
d.twin <- m[s$id,]
d.twin
#> state region income
#> 93 nc 1 288.23928
#> 17 nc 1 891.39412
#> 97 nc 1 252.96493
#> 167 sc 1 137.10608
#> 197 sc 2 464.66594
#> 208 sc 2 147.04832
#> 158 nc 3 72.05712
#> 151 nc 3 576.51902
#> 153 nc 3 347.32463
#> 152 nc 3 336.33121