Open smishr opened 1 year ago
Implement finite population correction like in R. Read Lohr on this.
The formula is
FPC = sqrt[(N - n)/(N - 1)]
Where:
N is the population size
n is the sample size
But the issue is that the population and sample size is different for each stratum. For JKn, you can multiply FPC for each strata because you do the summation. Not sure how to do it for bootstrap. Start with JKn.
TODO