View source: R/print_model_performance.R
| print.model_performance | R Documentation | 
Print Dataset Level Model Performance Summary
## S3 method for class 'model_performance'
print(x, ...)
x | 
 a model to be explained, object of the class 'model_performance_explainer'  | 
... | 
 other parameters  | 
 
library("ranger")
titanic_ranger_model <- ranger(survived~., data = titanic_imputed, num.trees = 100,
                               probability = TRUE)
# It's a good practice to pass data without target variable
explainer_ranger  <- explain(titanic_ranger_model, data = titanic_imputed[,-8],
                             y = titanic_imputed$survived)
# resulting dataframe has predicted values and residuals
mp_ex_rn <- model_performance(explainer_ranger)
mp_ex_rn
plot(mp_ex_rn)
 
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.