I have a question about R. If I havr a date like this
# name : Matrix
col1. col2
row1
row2
How can read the name of the subset of data from header and make a frame of same name in R. So that I can use it by the name Matrix.
And if I needed to read number of rows as specified in the header. What should I do. For example if this was the header, I would like to read 2 columns and 2 rows and name this frame Matrix
# name : Matrix
# row: 2
# col: 2
col1. col2
row1
row2
Thank you all.