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 have the most current version
utils::packageVersion("predict3d")
[1] ‘0.1.3.3’
Is there anything I could do?