You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Estimation effect (deff_est) could be wrong if the sum of calibrated weights (cw) is not equal to the sum of cw / g (pre-calibration weights). Probably corresponds only to the ratio estimation. The cause of the error is in the ratio linearization step.
To ensure correct estimation of the deff_est the sum of cw should be equal to the sum of cw / g.
Possible mitigation. The following adjustment of the g weights could be applied:
dat[, g_adj := g * sum(cw / g) / sum(cw)]
The text was updated successfully, but these errors were encountered:
Estimation effect (
deff_est
) could be wrong if the sum of calibrated weights (cw
) is not equal to the sum ofcw / g
(pre-calibration weights). Probably corresponds only to the ratio estimation. The cause of the error is in the ratio linearization step.To ensure correct estimation of the
deff_est
the sum ofcw
should be equal to the sum ofcw / g
.Possible mitigation. The following adjustment of the
g
weights could be applied:The text was updated successfully, but these errors were encountered: