Provides a Jupyter notebook compatible variant of debugger

dump.frames(
  dumpto = "last.dump",
  to.file = FALSE,
  include.GlobalEnv = FALSE,
  drop.kernel.frames = TRUE,
  drop.last = 4
)

Debugger(dump = last.dump)

Arguments

dumpto

Character string; name of the object or file that contains the dumped frames

to.file

Logical; whether to dump to a file.

include.GlobalEnv

Logical; see dump.frames

drop.kernel.frames

Logical; whether frames belonging to the R Kernel should be dropped

drop.last

Integer; how many of the last frames should be dropped (which are specific to the RKernel evaluator)

dump

An R dump object created by dump.frames

Functions

  • dump.frames(): An adaptation of the function with the same name from the 'utils' package