5.3 Estimation of ratios of population means

Suppose we know the population mean μx of an auxiliary variable x, and it is associated with the variable of interest, y. To estimate the population means of the target variable μy, intuitively, we could first estimate the ratio of their population means, $R_{y,x} $ and multiply it to μx, such that μ^yR=R^y,xμx, where the subscript “R” denotes “Ratios”, see (Wu and Thompson 2020). In this chapter, we demonstrate how to estimate the ratio between the population means of two variables. We created a variable HWT_DHT_M_TRM_sq, which is the square of the self-reported height (in meters). The estimate of the ratio between the population mean of HWT_WGHT_KG_TRM and that of HWT_DHT_M_TRM_sq is computed as

iSwi(HWT_WGHT_KG_TRMi)iSwi(HWT_DHT_M_TRM_sqi), where wi is the survey weight and S is the set of sampled units.

R

svyratio(numerator = ~HWT_WGHT_KG_TRM, denominator = ~HWT_DHT_M_TRM_sq, 
         design = CLSA.design )

SAS

PROC SURVEYMEANS data = CLSAData   ratio;   
VAR HWT_WGHT_KG_TRM HWT_DHT_M_TRM_sq;                    
RATIO  HWT_WGHT_KG_TRM / HWT_DHT_M_TRM_sq ;
STRATA GEOSTRAT_TRM;                       
WEIGHT WGHTS_INFLATION_TRM;                                   
RUN;   

SPSS

Click “Analyze” “Complex Samples” “Ratios…” Browse and select the survey design file, “CLSADesign.csaplan Click “Continue” and enter variables “HWT_WGHT_KG_TRM” and “HWT_DHT_M_TRM_sq” to the the “Numerators” and “Denominator” panels, respectively Click “Statistics…” Select “Standard error” Click “Continue” Click “OK”.

Stata

svy linearized : ratio (HWT_WGHT_KG_TRM / HWT_DHT_M_TRM_sq)
Result comparison
Estimate R SAS SPSS Stata
Estimate 27.6076 27.6076 27.6076 27.6076
SE 0.3177 0.3177 0.3177 0.3177

Reference

Wu, Changbao, and Mary E. Thompson. 2020. Sampling Theory and Practice. Cham, Switzerland: Springer. https://doi.org/10.1007/978-3-030-44246-0.