多重插补(MI)有3个步骤。
我使用R。
中的Amelia
包实现了此代码
> th.out <-amelia(th, m=5, ts="CTIME", cs="ID")
#'th' is a dataset related to temperature and humidity.
amelia()
的结果是5个估算数据集。 (th.out$imputations[1], th.out$imputations[2] .... th.out$imputations[5])
。
似乎amelia()
只实现了step1(impute)。如何进行步骤2(分析)和步骤3(组合)?你能推荐一些功能或包来执行剩下的两个步骤吗?