如何检索GEE模型拟合中使用的数据框?

时间:2019-08-17 13:24:18

标签: r panel-data gee

我有一个纵向数据框,每个id多行。

    > data("dietox")
    > head(dietox, 5)
   Pig    Evit    Cu Litter Start   Weight      Feed Time
1 4601 Evit000 Cu000      1  26.5 26.50000        NA    1
2 4601 Evit000 Cu000      1  26.5 27.59999  5.200005    2
3 4601 Evit000 Cu000      1  26.5 36.50000 17.600000    3
4 4601 Evit000 Cu000      1  26.5 40.29999 28.500000    4
5 4601 Evit000 Cu000      1  26.5 49.09998 45.200001    5

我正在尝试使用GEE模型来预测数据帧每一行的Weight

    library(gee)
    library(dplyr)

    > model1 <- gee(Weight ~ Start + Feed, id=Pig, data=dietox, corstr="exchangeable")
    > model1

 GEE:  GENERALIZED LINEAR MODELS FOR DEPENDENT DATA
 gee S-function, version 4.13 modified 98/01/27 (1998) 

Model:
 Link:                      Identity 
 Variance to Mean Relation: Gaussian 
 Correlation Structure:     Exchangeable 

Call:
gee(formula = Weight ~ Start + Feed, id = Pig, data = dietox, 
    corstr = "exchangeable")

Number of observations :  789 

Maximum cluster size   :  11 


Coefficients:
(Intercept)       Start        Feed 
  5.1539561   0.9384232   0.4294209 

我现在希望能够在数据帧prediction中添加新列,其中包含每行数据的预测权重值。这样的想法是,我将能够在Weight变量的不同点上将原始prediction变量与Time变量进行比较。

当我尝试使用mutatepredict函数执行此操作时,我收到一条错误消息,指出模型拟合(789)中使用的观察次数与模型拟合中的观察次数不同。原始数据帧(861)。

> new_df <- dietox %>%
+   mutate(prediction = predict(model1))
Error: Column `prediction` must be length 861 (the number of rows) or one, not 789

我的问题是:  1.如何提取789个观测值的数据框     在模型拟合中使用?  2.为什么观察数     模型中使用的拟合度与观察总数不同     在原始数据框中?

1 个答案:

答案 0 :(得分:1)

模型拟合中使用的789个观测值是没有NA的观测值。在NA列中,您有72个观测值作为Feed

sum(is.na(dietox$Feed))
#[1] 72

789 + 72给您完整的861个观测值。要获得所有预测值,您可以

dietox$Prediction <- NA
dietox$Prediction[!is.na(dietox$Feed)] <- predict(model1)

head(dietox)
#    Weight      Feed Time  Pig Evit Cu Litter Prediction
#1 26.50000        NA    1 4601    1  1      1         NA
#2 27.59999  5.200005    2 4601    1  1      1   31.43603
#3 36.50000 17.600000    3 4601    1  1      1   36.76708
#4 40.29999 28.500000    4 4601    1  1      1   41.45324
#5 49.09998 45.200001    5 4601    1  1      1   48.63296
#6 55.39999 56.900002    6 4601    1  1      1   53.66306

模型中使用的值也显示在model1$y中。