Error in fetch(key) : lazy-load database

◇◆丶佛笑我妖孽 提交于 2019-11-28 17:23:06
Rodrigo Zepeda

It seems that the error arises when the package cannot be decompressed by R (as @rawr established, it is corrupt). This solutions have worked for me:

1) Check for possible errors in the creation of the .Rdb files

2) Try restarting your R session (e.g. .rs.restartR() if in RStudio)

3) The package might have been installed in your computer (even though it does not work). Remove it using ?remove.packages()

I have had this problem with roxygen2 as well. Couldn't see any problem with any of my functions. In the end deleting the .rdb file and then getting roxygen2 to rebuild it seemed to solve the problem.

I think the explanation for what is causing this is here. It's related to devtools. Per @Zfunk

cd ~/Rlibs/descopl/help
rm *.rdb

Restart R. Look at the help for the package again. Fixed!

If you are using R-studio: 1) ctrl+shift+f10 to restart r session 2) tools -> Check for package updates -> update all packages 3) library(ggmap)

Problem is solved.

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!