I have a matrix in r (or dataframe) and would like to display the data but without the column names.
This because the data contained will be part of a markdown to word and therefore only data that I have within the table is relevant.
The final objective is to bring data contained that was generated with an r-script into a markdown document.
Table example:
df<-matrix(c("Name: John Doe", "Country: USA", "State: IL","Role: Consultant","Company: Microsoft","University: NYU"),ncol=2,byrow=TRUE)
Any ideas on how to display the data but not the column/row titles
Try
cat
:Output: