I am trying to use pander to render a model created by the lrm function in the rms package, but I get an error
lg<-lrm(Y~v1+v2+v3+v4+v5+v6, data=temp)
pander(lg)
The error that I get is:
Error: 'reVector' is not an exported object from 'namespace:rms'
Here is my 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
The pander documentation indicates that rms functions are supported. Thanks for any assistance.