Reputation: 31
Or is there a way to calculate the maximum amount of memory from a memory profiling method like profvis?
Upvotes: 2
Views: 616
Reputation: 1598
R has a built-in profiler Rprof
capable for tracking this:
Rprof(filename = "Rprof.out", memory.profiling = TRUE)
Upvotes: 2