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はそれを##見出し##はこの機能ではそれを行うことができないと言います...誰かがアイデアを持っているでしょうか?
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)
お役に立てれば。