Keep getting Error after downloading packages

I keep getting this error when trying to knit in R Markdown. "Error: package 'effects' could not be loaded" Everything is up to date, anybody have any ideas as to how to resolve this?

What error message you get if you try to load that package in the console?

library(effects)


This is the error message I get when I do library(effects).

The error message suggests you need to update your Rcpp package.

install.packages("Rcpp")

If you do not get any error message updating Rcpp, restart your R session and try to load effects again.

Thank you so much! It was able to successfully knit.

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.

If you have a query related to it or one of the replies, start a new topic and refer back with a link.