| remove_estimator | R Documentation |
Remove a registered estimator
remove_estimator(method, missing_ok = FALSE)
method |
A registered method name or alias. Names are case-insensitive; spaces, hyphens, and periods are normalized to underscores. |
missing_ok |
Logical. If |
Invisibly returns the removed registration, or NULL when
missing_ok = TRUE and no registration exists.
temp_fitter <- function(data, ...) data
register_estimator("temporary", temp_fitter)
remove_estimator("temporary")
remove_estimator("temporary", missing_ok = TRUE)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.