I am trying to use the following function but every time I do, I receive the error below. I tried installing an older version of rlang as it works on a different R Studio bu
I think the problem may come from incompatible package versions. You can try with:
update.packages(ask = FALSE, checkBuilt = TRUE)
If it doesn't work, reinstalling all packages the problem may disappear (code from here):
package_df <- as.data.frame(installed.packages())
package_list <- as.character(package_df$Package)
install.packages(package_list)