Locate where a specific component of a object might exist within the model object itself. This function is restricted in that only items that can be axed can be found.
Examples
lm_fit <- lm(mpg ~ ., data = mtcars)
locate(lm_fit, name = "env")
#> [1] "x$terms"
locate(lm_fit, name = "call")
#> [1] "x$call"