0

I recently installed the coefplot package to plot the confidence intervals for a couple multivariate regressions.

However, I am getting a fatal error. I followed all of the steps listed by @jashu in this post and restarted R, but it did not remedy my issue.

My code:

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

My Error:

Warning: Ignoring unknown aesthetics: xmin, xmax
Error: PositionDodgeV was built with an incompatible version of ggproto.
Please reinstall the package that provides this extension.
Stephen Kaiser
  • 113
  • 1
  • 7

1 Answers1

1

Figured it out:

devtools::install_github("jaredlander/coefplot")

It seems like jaredlander recently updated coefplot, which was causing the error.

Stephen Kaiser
  • 113
  • 1
  • 7