Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我尝试以乳胶表格的形式导出序列的多因素分析结果。我试图这样做,xtable()但 R 说它## Heading ## 不能用这个功能来做......有人会有想法吗?
xtable()
XXX.mfac <- dissmfacw(XXX.dist ~ variable1 + variable2 + variable3, data = XXX, R = 1000) print(XXX.mfac) xtable(XXX.mfac)
您要打印的表格位于元素“mfac”中。因此,您可以使用:
xtable(XXX.mfac$mfac) print(xtable(XXX.mfac$mfac), include.rownames=F)
希望这可以帮助。