Defunct as of rlang 0.3.0 and mutate_impl

后端 未结 7 1741
轮回少年
轮回少年 2021-01-03 22:25

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

相关标签:
7条回答
  • 2021-01-03 23:22

    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)
    
    0 讨论(0)
提交回复
热议问题