R中的效果包可以用于绘制不包括截距的线性模型的(边际)效果吗?
这是我为此类模型尝试的一些 R 代码:
x <- seq(1,100,by=0.1)
y <- 1 + 2*x + rnorm(n=length(x))
model <- lm(y ~ 0 + x)
require(effects)
plot(allEffects(model))
它产生的错误如下:
Error in plot(allEffects(model)) :
error in evaluating the argument 'x' in selecting a method for function 'plot':
Error in mod.matrix %*% mod$coefficients[!is.na(mod$coefficients)] :
non-conformable arguments
如果有人对如何克服此错误有任何想法,请告诉我。
谢谢,
伊莎贝拉