identify_predictors | R Documentation |
Returns a list with the names of the valid numeric predictors and the names of the valid categorical predictors
identify_predictors(df = NULL, predictors = NULL)
df |
(required; data frame, tibble, or sf) A data frame with responses and predictors. Default: NULL. |
predictors |
(optional; character vector) Names of the predictors to select from |
list: names of numeric and categorical predictors
Blas M. Benito, PhD
Other data_types:
identify_predictors_categorical()
,
identify_predictors_numeric()
,
identify_predictors_type()
,
identify_predictors_zero_variance()
,
identify_response_type()
if (interactive()) {
data(
vi,
vi_predictors
)
predictors_names <- identify_predictors(
df = vi,
predictors = vi_predictors
)
predictors_names
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.