Is there anybody facing the same as I am when running the command multiplot
from R
package coefplot
?
Even for the example:
data(diamonds)
model1 <- lm(price ~ carat + cut, data=diamonds)
model2 <- lm(price ~ carat + cut + color, data=diamonds)
model3 <- lm(price ~ carat + color, data=diamonds)
multiplot(model1, model2, model3)
I´m now getting the below error:
Error in get(x, envir = this, inherits = inh)(this, ...) :
attempt to apply non-function
Any hint?