I have loaded a csv file using read.csv. This has 18 columns and 9000+ rows.
Out of these I am specifically trying to work with two columns: 1) Date, which has date. 2) review text, which has a few lines of text per entry and is a list.
I have extracted these two columns seperately from the CSV and am trying to combine them together to get an object that looks like
Date review_text
2009-01-01 " This is good"
2010-01-01 "Was a great experience"
and so on. I have tried using c, paste and also cbind, but am unable to combine these two objects. Please let me know if you have any suggestions. On a related note, once I combine these, I am trying to sort the resulting object by date, to group the entries by quarter, so what would be the best object to put this into? Please advice. Thanks!