I can produce a table with gridExtra:
eg:
library(gridExtra)
grid.table(head(iris))
But this produces a rownames column 1:6. Is there a way to be able to suppress the rownames column so that it does not appear in the table?
Thank you for your help.
Just add rows = NULL
:
grid.table(head(iris), rows = NULL)
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With