model_checker | R Documentation |
The function checks whether the model given by x
is supported.
If x
is not a supported model the function will return an error message, otherwise it return NULL
(meaning all types of models with this class is supported)
model_checker(x)
## Default S3 method:
model_checker(x)
## S3 method for class 'lm'
model_checker(x)
## S3 method for class 'glm'
model_checker(x)
## S3 method for class 'ranger'
model_checker(x)
## S3 method for class 'gam'
model_checker(x)
## S3 method for class 'xgb.Booster'
model_checker(x)
x |
Model object for the model to be explained. |
See predict_model
for more information about
what type of models shapr
currently support.
Error or NULL
if (requireNamespace("MASS", quietly = TRUE)) {
# Load example data
data("Boston", package = "MASS")
# Split data into test- and training data
x_train <- head(Boston, -3)
# Fit a linear model
model <- lm(medv ~ lstat + rm + dis + indus, data = x_train)
# Checking the model object
model_checker(x = model)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.