I have a fairly large dataset from an experiment I am running. My experiments emits data in a csv. However, one of the fields in the csv is additionally separated by spaces. How can I efficiently represent this in R?
Right now I parse the csv into a data frame, and then convert the variable field into a list of smaller data frames. Logically, this represents the data well, but it uses a ton of memory. R only uses ~150MB to parse the csv file, but the conversion of the variable field uses 8GB, at which point my machine runs out of memory.