Inclusion Probabilities: Simple Random Sampling
simple_rs_probabilities(N, prob = NULL, prob_unit = NULL, check_inputs = TRUE, simple = TRUE)
N | The number of units. N must be a positive integer. (required) |
---|---|
prob | prob is the probability of being sampled must be a real number between 0 and 1 inclusive, and must be of length 1. (optional) |
prob_unit | prob is the probability of being sampled must be a real number between 0 and 1 inclusive, and must be of length N. (optional) |
check_inputs | logical. Defaults to TRUE. |
simple | logical. internal use only. |
A vector length N indicating the probability of being sampled.
#> probs #> 0.5 #> 200#> probs #> 0.3 0.7 #> 100 100