Trying to View a RData file which is 650,000KB and the machine has 8GB RAM but keep getting this error:
Reached total allocation of 7758Mb: see help(memory.size)
Error in View : cannot allocate vector of size 54.6 Mb
I had initially imported this file (2.5GB) using Read.table with great difficulty due to the size. Code used:
A <- read.table(file.choose(),header = TRUE, sep= "|", fill = T, nrows = 9000000, stringsAsFactors = T)
save(A, file ="A.RData")
load("A.RData")
View(A)