Coefplot 致命绘图错误 ggproto [R]
Coefplot fatal plotting error ggproto [R]
我最近安装了 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.
想通了:
devtools::install_github("jaredlander/coefplot")
jaredlander 似乎最近更新了 coefplot,这是导致错误的原因。
我最近安装了 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.
想通了:
devtools::install_github("jaredlander/coefplot")
jaredlander 似乎最近更新了 coefplot,这是导致错误的原因。