R/complete_rs.R
complete_rs_probabilities.RdInclusion Probabilities: Complete Random Sampling
complete_rs_probabilities(
N,
n = NULL,
n_unit = NULL,
prob = NULL,
prob_unit = NULL,
check_inputs = TRUE
)The number of units. N must be a positive integer. (required)
Use for a design in which exactly n units are sampled. (optional)
unique(n_unit) will be passed to n. Must be the same for all units (optional)
Use for a design in which either floor(N*prob) or ceiling(N*prob) units are sampled. The probability of being sampled is exactly prob because with probability 1-prob, floor(N*prob) units will be sampled and with probability prob, ceiling(N*prob) units will be sampled. prob must be a real number between 0 and 1 inclusive. (optional)
unique(prob_unit) will be passed to the prob argument and must be the same for all units.
logical. Defaults to TRUE.
A vector length N indicating the probability of being sampled.