James
James

Reputation: 21

Error in match.arg(ci_style) : 'arg' must be NULL or a character vector

I'm wondering if anyone would have insight as to why I am receiving this error:

Error in match.arg(ci_style) : 'arg' must be NULL or a character vector

It only seems to happen when I ask for a type = "pred" plot.

The exact same command works fine on a different machine at home. The differences I can see are that the machine where the command works fine was updated to Sonoma, and a slightly older version of R.

Thanks!

R version 4.3.2 (2023-10-31)
Platform: x86_64-apple-darwin20 (64-bit)
Running under: macOS Big Sur 11.7.10

lm(OBP ~ Avg, data = base100)
yaya <- lm(OBP ~ Avg, data = base100)
plot_model(yaya, type = "pred") 

Error in match.arg(ci_style) : 'arg' must be NULL or a character vector

Upvotes: 2

Views: 838

Answers (0)

Related Questions