0

我最近安装了 coefplot 包来绘制几个多元回归的置信区间。

但是,我遇到了一个致命错误。我按照@jashu 在 这篇文章中列出的所有步骤重新启动了 R,但它并没有解决我的问题。

我的代码:

coefplot:::buildModelCI(fit) #This works 
coefplot(fit) #This causes error and does not plot

我的错误:

Warning: Ignoring unknown aesthetics: xmin, xmax
Error: PositionDodgeV was built with an incompatible version of ggproto.
Please reinstall the package that provides this extension.
4

1 回答 1

1

弄清楚了:

devtools::install_github("jaredlander/coefplot")

好像 jaredlander 最近更新了导致错误的 coefplot。

于 2017-04-06T16:55:29.217 回答