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.
gridExtraを使用してテーブルを作成できます。
例えば:
library(gridExtra) grid.table(head(iris))
ただし、これにより行名列1:6が生成されます。行名列を抑制してテーブルに表示されないようにする方法はありますか?
ご協力ありがとうございました。
追加するだけrows = NULLです:
rows = NULL
grid.table(head(iris), rows = NULL)