无法通过 R Studio 中的 eeptools 获取 'memisc'。加载 eeptools 时没有名为 memisc 的包

Not able to get 'memisc' through eeptools in R Studio. No package called memisc while loading eeptools

我最初认为 memisc 包含在 eeptools 包中。所以我安装了 eeptools 包。

install.packages('eeptools')

然后尝试使用 memisc

library(memisc)

我收到一个错误

Error in library(memisc) : there is no package called ‘memisc’ So I try to use eeptools library directly.

library(eeptools)

错误仍然延伸到这个库...

Error in loadNamespace(i, c(lib.loc, .libPaths()), versionCheck = vI[[i]]) : there is no package called ‘memisc’ Show Traceback Error: package or namespace load failed for ‘eeptools’

基于这个问题 - Error in loadNamespace(i, c(lib.loc, .libPaths()), versionCheck = vI[[i]]) : there is no package called 'stringi' 我试过这样做

install.packages("eeptools", repos="http://cran.rstudio.com/", dependencies=TRUE)

错误仍然存​​在。它给出了一个警告说它找不到 memisc。 如果有帮助,我正在使用 R Studio 处理 Rmd 文件和 MacOS。

在评论中采纳@Marco Sandri 的建议后,我尝试通过下载软件包手动安装它。它给出了一个错误,说我的 R 需要更新。在更新 R 时,eeptools 的安装工作正常,memisc 也工作。