我正在尝试使用pander渲染由rms包中的lrm函数创建的模型,但是我收到错误
lg<-lrm(Y~v1+v2+v3+v4+v5+v6, data=temp)
pander(lg)
我得到的错误是:
Error: 'reVector' is not an exported object from 'namespace:rms'
这是我的sessionInfo:
> sessionInfo()
R version 3.3.2 (2016-10-31)
Platform: i386-w64-mingw32/i386 (32-bit)
Running under: Windows 7 x64 (build 7601) Service Pack 1
attached base packages:
[1] stats graphics grDevices utils datasets methods base
other attached packages:
[1] pander_0.6.0 rms_5.1-1 SparseM_1.77 Hmisc_4.0-3 ggplot2_2.2.1 Formula_1.2-1 survival_2.41-3 lattice_0.20-35
pander文档表明支持rms功能。感谢您的帮助。