Remove a registered estimator
Value
Invisibly returns the removed registration, or NULL when
missing_ok = TRUE and no registration exists.
Examples
temp_fitter <- function(data, ...) data
register_estimator("temporary", temp_fitter)
remove_estimator("temporary")
remove_estimator("temporary", missing_ok = TRUE)