Options (error = dump.frames) compared to options (error = utils :: recover)

I recently programmed in R and struggled to get line numbers for code, which is a common problem (since the question is duplicated several times on SO). Other posts on stackoverflow parameters (error = dump.frames) and parameters (error = utils :: recover) or parameters (error = recover) had highly supported answers as solutions to this problem. However, there was no answer, which gives a specific description of the advantages and disadvantages of each error option. So my question is when do you want to use parameters (error = utils :: recover) and when do you want to use parameters (error = dump.frames)?

+3
source share

All Articles