I couldn't think of exactly what the question should have been so if you have a suggestion for what it should be please let me know.
I've seen before a way to read data into a data frame that is tabbed or white spaced in your working script file. For example:
dat <- SOMETHING(
person1 12 15
person2 15 18
person3 20 14
)
Say you're grabbing data from a website and just want to table a few things, and it comes off like this with white space etc. I could open a text file and save it and then read.table or similar with csv but I'm sure I've seen data read in this way and can't for the life of me remember how...
Thanks