The previous R session was abnormally terminated due to an expected crash

Im trying to read a table (size 19MB) and when I run the code it keeps reading and after a few minutes this crash report appears : The previous R session was abnormally terminated due to an expected crash.

I dont think the problem is the size of the table or the memory limit, since I cant even read the arquive

library(readxl)
base <- read_excel("BASE_BK_SP.xlsx")

It doesn't appear you need to access any specific range or use any knowledge of the Excel format so could you try to save as comma separated values (csv) and import that? It might give you more information about any weirdness in the data.

This topic was automatically closed 21 days after the last reply. New replies are no longer allowed.