I have a 91.2 MB appt data frame containing 29255 cases of 51 variables.
When I tried to check its end using tail(appt) , I get an error
Error: C stack usage 20212630 is too close to the limit
I have no idea what to do to handle this. Any suggestions on what I can do?
As additional information, I have in memory at the same time several other variables of almost comparable size, including a character vector of 90.2 MB and a data frame of 42.3 MB of 77405 vol. x 60 variables. Calling tail for these two other variables did not cause any errors.
Edit: I narrowed down that the error only occurs when accessing the last line. those. appt[29254, ] excellent, appt[29255, ] throws an error.
source share