0

So I basically try to use the predict3d package to plot the results of a glm. I found out I should use ggpredict for it.

However I always get the error:

library(predict3d)
plot(predict3d::ggpredict(mymodel,c("x","x")))

---> Error: 'ggpredict' is not an exported object from 'namespace:predict3d'

Following this question: How should I deal with "'someFunction' is not an exported object from 'namespace:somePackage'" error?

I think I did what I can. enter image description here

I have the most current version

utils::packageVersion("predict3d")
[1] ‘0.1.3.3’

Is there anything I could do?

canIchangethis
  • 87
  • 1
  • 10

1 Answers1

1

R is case sensitive, the function that you are looking for is ggPredict() which is available in the predict3d package.

Ronak Shah
  • 377,200
  • 20
  • 156
  • 213