I am using RStudio for some data analysis. System specs: i5 + 4GB RAM. For some reason, my RStudio is taking up a chunk of my RAM much much bigger than my data which leaves me with very little space for other operations. I read a 550MB csv file, memory taken by R: 1.3 - 1.5GB I saved the csv as a .RData file. File size: 183MB. Loaded the file in RStudio, memory taken by R: 780MB. Any idea why this could be happening and how to fix it?
Edits:
The file has 123 columns and 1190387 rows. The variables are of type num and int.
str(my_data_frame)to your question. Here is a wild guess: Try addingstringsAsFactors=FALSEto yourread.table()call. – bdemarest Jul 30 '12 at 5:05stringsAsFactors = FALSEto myread.csv()call but it didn't make a difference in the memory usage. – Macbook Jul 30 '12 at 16:19