I have a matrix and I would like to write it below 2 lines of text.
line #1 is here
line #2 is here
Table
I can write the table easily but is there way to append line of text above it?
table = matrix(1:9, nrow = 3, ncol = 3)
write.table(table, "data.txt", sep="\t")