R show data from matrix/ dataframe but not the column or row names

72 Views Asked by At

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

1

There are 1 best solutions below

0
On BEST ANSWER

Try cat:

cat(df, sep = "\n")

Output:

Name: John Doe
State: IL
Company: Microsoft
Country: USA
Role: Consultant
University: NYU