I've got a population stratified by provinces (10 provinces) and I need to sample (using SRSWOR) 5 smaller areas in each province. Then, I'll have to select 1000 units per small area using SRS without replacement. Do you know a quick solution to this in R? Thanks a lot.
Asked
Active
Viewed 149 times
0
-
`sample` offers sampling without replacement by default. – sebastian-c Sep 20 '17 at 16:23
-
1As @sebastian-c suggested, you can use `sample`. If you want any more advice than that, you can provide a [reproducible example](https://stackoverflow.com/questions/5963269/how-to-make-a-great-r-reproducible-example) of your data and an expected output. – csgroen Sep 20 '17 at 17:15