我的混合模型如下:
model <- lme(Cost~1+Units, random=~1+Units|Factory, method="ML", data=A)
有人告诉我应用下面的代码来绘制残差与拟合值,并且它起作用了:
plot(fitted(model), resid(model))
但是,当我尝试绘制残差与预测变量单位的关系时,它向我显示了一条错误消息。
> plot(Units(model), resid(model))
Error: could not find function "Units"
Error in plot(Units(model), resid(model)) :
error in evaluating the argument 'x' in selecting a method for function 'plot'
我应该怎么做才能解决这个问题?谢谢。