I got a very long telephone log as a text file and I have tried to read it into R but it is not really working out. The text has a structure but it is most certainly not a table. Its structure is as follows
- Each record is composed of multiple lines so readLines is not quite appropriate
- Each line of each record is a separate field
- Some records have an additional field after the second field
- Each new record is noted by a blank line.
readLinesorscanwould have worked if one could have specified that records were separated by "\n\n" and that fields (or columns) were separated by "\n"
Here is an example:
TheInstitute 5467
telephone line 4125526987 x 4567
datetime 2011110516 12:56
blay blay blah who knows what, but anyway it may have a comma
TheInstitute 5467
telephone line 4125526987 x 4567
datetime 2011110516 12:58
blay blay blah who knows what
TheInstitute 5467
telephone line 412552999 x 4999
bump phone line 4125527777
datetime 2011110516 12:59
blay blay blah who knows what
TheInstitute 5467
telephone line 4125526987 x 4567
bump phone line 4125527777
datetime 2011110516 13:51
blay blay blah who knows what, but anyway it may have a comma
TheInstitute 5467
telephone line 4125526987 x 4567
datetime 2011110516 14:56
blay blay blah who knows what
How can I do this in R? I have tried tricks with scan, paste, strsplit but I am spinning in circles. I may have to get it into a list since that can handle non-equal number of elements. I would like to get all the records to have the same number of fields and for those records that do not have the one field (here called bump phone) I would like them just to have a NA as the value in that field. I would appreciate help even just to get started. From there I can play and toy.