DALEX auxiliary function for creating Partial Dependency Plots and study variable's responses vs independent vector.
See also
Other Interpretability:
dalex_local()
,
dalex_residuals()
,
h2o_explainer()
Examples
# You must have "DALEX" library to use this auxiliary function:
if (FALSE) { # \dontrun{
# Having an "explainer" object created with \code{h2o_explainer}:
# For numerical variables
dalex_variable(explainer, vars = c("Age", "Fare"))
# For categorical variables
dalex_variable(explainer, vars = c("Pclass", "Sex"))
} # }