在做下游分析的过程中,遇到了这个错误
错误: package or namespace load failed for ‘org.Mm.eg.db’:
loadNamespace()里算'org.Mm.eg.db'时.onLoad失败了,详细内容:
调用: l operator is invalid for atomic vectors
![](https://img.haomeiwen.com/i13524692/25424fba460674b5.png)
上面解释了错误的原因是这个:This appears to be a bug in the communication between the latest release of the RSQLite package and RStudio.
也给了解决方法:
options(connectionObserver = NULL)
library(org.Mm.eg.db)#真的没有出现报错了
另外一种解决方法可供参考,我没试
You can also install the previous release of RSQLite using remotes, e.g. with:
remotes::install_version("RSQLite", version = "2.2.5")
问题是解决了
网友评论