无法将库 "gbm" 附加到 R 项目
Unable to attache the library "gbm" to the R project
我安装了库 gbm
(RStudio)。当我尝试调用它时,它失败了:
library("gbm")
Loading required package: survival
Loading required package: splines
Loading required package: lattice
Loading required package: parallel
Error : .onAttach failed in attachNamespace() for 'gbm', details:
call: formatDL(nm, txt, indent = max(nchar(nm, "w")) + 3)
error: incorrect values of 'indent' and 'width'
In addition: Warning message:
package ‘gbm’ was built under R version 3.1.3
Error: package or namespace load failed for ‘gbm’
值得一提的是,就在一天前,这个库还运行良好。我没有对 RStudio 设置进行任何更改。
这是一个奇怪的错误。查看 this thread,它报告了与 mgcv
R 包类似的问题;令人惊讶的是,解决方案似乎只是调整右侧的大小以增加 windows 的宽度。现在尝试再次加载库 ("gbm"),它应该可以工作。
我安装了库 gbm
(RStudio)。当我尝试调用它时,它失败了:
library("gbm")
Loading required package: survival
Loading required package: splines
Loading required package: lattice
Loading required package: parallel
Error : .onAttach failed in attachNamespace() for 'gbm', details:
call: formatDL(nm, txt, indent = max(nchar(nm, "w")) + 3)
error: incorrect values of 'indent' and 'width'
In addition: Warning message:
package ‘gbm’ was built under R version 3.1.3
Error: package or namespace load failed for ‘gbm’
值得一提的是,就在一天前,这个库还运行良好。我没有对 RStudio 设置进行任何更改。
这是一个奇怪的错误。查看 this thread,它报告了与 mgcv
R 包类似的问题;令人惊讶的是,解决方案似乎只是调整右侧的大小以增加 windows 的宽度。现在尝试再次加载库 ("gbm"),它应该可以工作。