Estimated relvariance components for 2-stage sample
Estimate components of relvariance for a sample design where primary sampling units (PSUs) are selected with pps and elements are selected via srs. The input is a sample selected in this way.
BW2stagePPSe(Ni, ni, X, psuID, w, m, pp)
Ni |
vector of number of elements in the population of each sample PSU; length is the number of PSUs in the sample. |
ni |
vector of number of sample elements in each sample PSU; length is the number of PSUs in the sample. PSUs must be in the same order in |
X |
data vector for sample elements; length is the number of elements in the sample. These must be in PSU order. PSUs must be in the same order in |
psuID |
vector of PSU identification numbers. This vector must be as long as |
w |
vector of full sample weights. This vector must be as long as |
m |
number of sample PSUs |
pp |
vector of 1-draw probabilities for the PSUs. The length of this vector is the number of PSUs in the sample. Vector must be in the same order as |
BW2stagePPSe
computes the between and within population variance and relvariance
components appropriate for a two-stage sample in which PSUs are selected with varying
probabilities and with replacement. Elements within PSUs are selected by simple random sampling.
The number of elements selected within each sample PSU can vary but must be at least two.
The estimated components are appropriate for approximating the relvariance of the pwr-estimator
of a total when the same number of elements are selected within each sample PSU.
This function can also be used if PSUs are selected by srswr by appropriate definition of pp
.
List with values:
Vpsu |
estimated between PSU unit variance |
Vssu |
estimated within PSU unit variance |
B |
estimated between PSU unit relvariance |
W |
estimated within PSU unit relvariance |
k |
estimated ratio of |
delta |
intraclass correlation estimated as |
Richard Valliant, Jill A. Dever, Frauke Kreuter
Cochran, W.G. (1977, pp.308-310). Sampling Techniques. New York: John Wiley & Sons.
Valliant, R., Dever, J., Kreuter, F. (2013, sect. 9.4.1). Practical Tools for Designing and Weighting Survey Samples. New York: Springer.
## Not run: require(sampling) require(reshape) # has function that allows renaming variables data(MDarea.pop) Ni <- table(MDarea.pop$TRACT) m <- 20 probi <- m*Ni / sum(Ni) # select sample of clusters sam <- cluster(data=MDarea.pop, clustername="TRACT", size=m, method="systematic", pik=probi, description=TRUE) # extract data for the sample clusters samclus <- getdata(MDarea.pop, sam) samclus <- rename(samclus, c(Prob = "pi1")) # treat sample clusters as strata and select srswor from each s <- strata(data = as.data.frame(samclus), stratanames = "TRACT", size = rep(50,m), method="srswor") # extracts the observed data samdat <- getdata(samclus,s) samdat <- rename(samdat, c(Prob = "pi2")) # extract pop counts for PSUs in sample pick <- names(Ni) %in% sort(unique(samdat$TRACT)) Ni.sam <- Ni[pick] pp <- Ni.sam / sum(Ni) wt <- 1/samdat$pi1/samdat$pi2 BW2stagePPSe(Ni = Ni.sam, ni = rep(50,20), X = samdat$y1, psuID = samdat$TRACT, w = wt, m = 20, pp = pp) ## End(Not run)
Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.