deprecated | R Documentation |
Deprecated functions
.Deprecated
.
Deprecated.
a <- function(...) {
.Deprecated("b")
b(...)
}
b <- function(x) {
x + 1L
}
withCallingHandlers(
expr = a(1L),
warning = function(w) {
print(w)
invokeRestart("muffleWarning")
}
)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.