untrace_package | R Documentation |
Removes tracing from all function calls in a package that were previously traced by trace_package()
.
untrace_package(pkg)
pkg |
Package name to untrace. |
This function reverses the effects of trace_package
by removing all tracing from the specified package's functions.
No return value, called for side effects
trace_package()
## Not run:
local({
trace_package("graphics", funign = "plot.default")
on.exit(untrace_package("graphics"), add = TRUE)
plot(1:10)
})
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.