Taylor Series Linearization to Calculate Variance in NHANES
Hello,
Looking at the NHANES data that incorporates demographic weightings and population stratum & PSU, is there a way to do a survey design in JMP? There is SAS code attached from the CDC below as well as R & Stata code.
https://wwwn.cdc.gov/nchs/nhanes/tutorials/Module4.aspx
Code:
SASPROC SURVEYMEANS data=one varmethod=taylor nomcar;
STRATA sdmvstra;
CLUSTER sdmvpsu;
WEIGHT WTMEC4YR;
DOM
...