Combines estimates and variances from multiple imputed datasets using Rubin's rules.
Value
A list containing:
- pooled_estimate
Pooled point estimate (mean of estimates)
- pooled_se
Pooled standard error
- ci
Confidence interval (lower, upper)
- within_var
Within-imputation variance
- between_var
Between-imputation variance
- total_var
Total variance
- fmi
Fraction of missing information
- df
Degrees of freedom for t-distribution
- t_statistic
t-statistic for hypothesis test
- p_value
Two-sided p-value
Details
Rubin's rules combine estimates from m imputed datasets:
Pooled estimate: Q_bar = mean(Q_i)
Within-imputation variance: U_bar = mean(U_i)
Between-imputation variance: B = var(Q_i)
Total variance: T = U_bar + (1 + 1/m) * B
The fraction of missing information (FMI) indicates the proportion of total variance attributable to missing data.
