最近,我安装了coefplot来绘制几个多元回归的置信区间。
然而,我得到了一个致命的错误。我遵循了@jashu在this post中列出的所有步骤,并重新启动了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.发布于 2017-04-06 16:55:29
弄明白了:
devtools::install_github("jaredlander/coefplot")它似乎是jaredlander最近更新的coefplot,这是导致错误。
https://stackoverflow.com/questions/43260740
复制相似问题