Explain Model Predictions for Classifiers Trained in Classification Learner App
Understanding how some machine learning models make predictions can be difficult. Interpretability tools help reveal how predictors contribute (or do not contribute) to model predictions. You can also use these tools to validate whether a model uses the correct evidence for its predictions, and find model biases that are not immediately apparent.
Global and Local Interpretation Plots
The Classification Learner app provides several types of global interpretation plots that explain how a trained model makes predictions for the entire data set. For example, you can use global plots to effectively compare how different machine learning models make predictions on the same data set. Global Shapley plots use Shapley values derived from game theory to visualize the impact of individual predictors on model predictions for a set of query points. The partial dependence plot (PDP), another global interpretation plot, shows the relationship between a predictor and the model prediction by marginalizing out the effect of the other predictors.
The following table describes the global interpretation plots that are available for a data set that contains K classes and p predictors. q represents the number of query points.
Plot | Usage | Type | X-axis | Y-axis | Number of Possible Plots | Number of Shapley Values Summarized |
---|---|---|---|---|---|---|
Shapley Importance (since R2024b) | Identify which predictors have the largest (or smallest) average impact on predicted scores. Display selected classes as stacked bars. | Bar or stacked bar chart | Mean of absolute Shapley values | Predictors | 1 | K × p × q |
Shapley Summary (since R2024b) | Interpret the positive or negative impact of individual predictors on the predicted scores for a specified class by plotting the Shapley values of a set of query points. Color the query points according to relative predictor value. | Swarm or box chart | Shapley value | Predictors | K | p × q |
Shapley Dependence (since R2024b) | Interpret the positive or negative impact of a predictor of interest on the predicted scores for a specified class by plotting the Shapley values versus the predictor values for a set of query points. Optionally color the query points according to the values of a second predictor. | Scatter or box chart | Predictor value | Shapley value for x-axis predictor | K × p2 | q |
Partial Dependence (since R2022b) | Visualize the marginal effect of a predictor of interest on the predicted scores across the predictor values for a specified class (or classes). | Line plot | Predictor value | Predicted scores | p | Not applicable |
The app also offers two types of local interpretation plots that allow you to examine model predictions for a specific query point of interest. For example, you can use a local interpretation plot to examine a counterintuitive model prediction for an individual observation.
Generate a Local Shapley plot to compute Shapley values for a query point and identify which predictors have the largest (or smallest) impact on the model predictions for that point.
Generate a LIME (local interpretable model-agnostic explanations) plot to fit a simple interpretable model for a query point and identify which predictors have the largest (or smallest) impact on the model predictions for that point.
When you create a global or local interpretation plot, you can export the plot and the results to the workspace. However, you cannot export partial dependence plot results from the app. For an example of how to extract PDP results in MATLAB®, see Extract Partial Dependence Estimates from Plots.
Explain Local Model Predictions Using LIME Values
Use LIME (local interpretable model-agnostic explanations) to interpret a prediction for a query point by fitting a simple interpretable model for the query point. The simple model acts as an approximation for the trained model and explains model predictions around the query point. The simple model can be a linear model or a decision tree model. You can use the estimated coefficients of a linear model or the estimated predictor importance of a decision tree model to explain the contribution of individual predictors to the prediction for the query point.
After you train a model in Classification Learner, select the model in the
Models pane. On the Explain tab, in
the Local Explanations section, click
LIME. The app opens a new tab. In the left plot or table,
select a query point. In the right plot or table, the app displays the LIME values
corresponding to the query point. The app uses the lime
function to compute the LIME values. When computing LIME values, the app uses the
final model, trained on the full data set (including training and validation data,
but excluding test data).
Note
Classification Learner does not support LIME explanations for models trained after applying feature selection or principal component analysis (PCA).
Select Query Point
To select a query point, you can use various controls.
To the right of the LIME plots, under Data, choose whether to select a query point from the Training set data or Test set data. The training set refers to the data used to train the final model and includes all the observations that are not reserved for testing.
Above the left plot, under Select Query Point, choose whether to select a query point from a plot (Plot) or a table (Table). If using a plot, click a point in the plot to designate the associated observation as the query point. If using a table, click a row in the table to select the associated observation as the query point.
Alternatively, select a query point using the index of the observation in the selected data set. To the right of the LIME plots, under Query Point, enter the observation index.
To make selecting a query point from a plot easier, you can change the plot display by using the controls below the left plot. You can select the x-axis and y-axis variables and choose the values to display (such as correctly classified observations and incorrectly classified observations).
After selecting a query point, you can expand the LIME Explanations display by hiding the Select Query Point display. To the right of the LIME plots, under Data, clear the Show query points check box.
Plot LIME Explanations
Given a query point, view its LIME values by using the LIME Explanations display. Choose whether to view the results using a bar graph (Plot) or a table (Table). The table includes the predictor values at the query point.
The meaning of the LIME values depends on the type of LIME model used. To the right of the LIME plots, in the Simple Model section under LIME Options, specify the type of simple model to use for approximating the behavior of the trained model.
If you use a
Linear
simple model, the LIME values correspond to the coefficient values of the simple model. The bar graph shows the coefficients, sorted by their absolute values. For each categorical predictor, the software creates one less dummy variable than the number of categories, and the bar graph displays only the most important dummy variable. You can check the coefficients of the other dummy variables using theSimpleModel
property of the exported results object. For more information, see Export LIME Results.If you use a
Tree
simple model, the LIME values correspond to the estimated predictor importance values of the simple model. The bar graph shows the predictor importance values, sorted by their absolute values. The bar graph shows LIME values only for the subset of predictors included in the simple model.
Below the display of the LIME explanations, the app shows the query point predictions for the trained model (for example, Model 1 prediction) and the simple model (for example, LIME model prediction). If the two predictions are not the same, the simple model is not a good approximation of the trained model at the query point. You can change the simple model so that it better matches the trained model at the query point by adjusting LIME options.
Adjust LIME Options
To adjust LIME options, you can use various controls to the right of the LIME plots, under LIME Options.
Under Simple Model, you can set these options:
Simple model — Specify the type of simple model to use for approximating the behavior of the trained model. Choose between a linear model, which uses
fitclinear
, and a decision tree, which usesfitctree
. For more information, seeSimpleModelType
.In Classification Learner, linear simple models use a
BetaTolerance
value of 0.00000001.Max num predictors — Specify the maximum number of predictors to use for training the simple model. For a linear simple model, this value indicates the maximum number of predictors to include in the model, not counting expanded categorical predictors. Unimportant predictors are not included in the simple model. For a tree simple model, this value indicates the maximum number of decision splits (or branch nodes) in the tree, which might cause the model to include fewer predictors than the specified maximum. For more information, see
numImportantPredictors
.Kernel width — Specify the width of the kernel function used to fit the simple model. Smaller kernel widths create LIME models that focus on data samples near the query point. For more information, see
KernelWidth
.
Under Synthetic Predictor Data, you can set these options:
Num data samples — Specify the number of synthetic data samples to generate for training the simple model. For more information, see
NumSyntheticData
.Data locality — Specify the locality of the data to use for synthetic data generation. A
Global
locality uses all observations in the training set, and aLocal
locality uses the k-nearest neighbors of the query point. (Recall that the training set contains the data used to train the final model and includes all the observations that are not reserved for testing.) For more information, seeDataLocality
.Num neighbors — Specify the number of k-nearest neighbors for the query point. This option is valid only when the data locality is
Local
. For more information, seeNumNeighbors
.
For more information on the LIME algorithm and how synthetic data is used, see LIME.
Perform What-If Analysis
After computing the LIME results for a query point, you can perform what-if analysis and compare the LIME results for the original query point to the results for a custom query point. For example, you can see whether the important predictors change when the query point predictor values deviate slightly from their original values.
To the right of the LIME plots, under Query Point, select What-if analysis. The app creates a table that shows the predictor values for the original query point and a custom query point. Manually specify the predictor values of the custom query point by editing the Custom Value table entries. To better see the table entries, you can increase the width of the plot options panel by using the plus button + at the top of the panel.
After you specify a custom query point, the app updates the display of the LIME results.
The query point plot shows the original query point as a black circle and the custom query point as a green square.
The LIME explanations bar graph shows the LIME values for the original and custom query points, and differentiates the two sets of bars by using different colors and edge styles.
The LIME explanations table includes the LIME and predictor values for both query points.
Below the display of the LIME explanations, you can find the trained model and simple model predictions for both query points. Ensure that the two predictions for the custom query point are the same. Otherwise, the simple model is not a good approximation of the trained model at the custom query point.
Export LIME Results
After computing LIME values, you can export your results by using options in the Export section on the Explain tab.
To export the LIME explanations bar graph to a figure, click Export Plot and select Export Plot to Figure.
To export the LIME explanations table and the query point model explainer object to the workspace, click Export Plot and select Export Plot Data. In the Export LIME Plot Data dialog box, edit the name of the exported variable, if necessary, and click OK. The app creates a structure array that contains the LIME results table and the explainer object. If you specify a custom query point by using what-if analysis, the model explainer object corresponds to the custom query point. For more information on the explainer object, see
lime
.
Explain Local Model Predictions Using Shapley Values
Use the Shapley value of a predictor for a query point to explain the deviation of the query point prediction from the average prediction, due to the predictor. For classification models, predictions are class scores. For a query point, the sum of the Shapley values for all predictors corresponds to the total deviation of the prediction from the average.
After you train a model in Classification Learner, select the model in the
Models pane. On the Explain tab, in
the Local Explanations section, click Local
Shapley. The app opens a new tab. In the left plot or table, select a
query point. In the right plot or table, the app displays the Shapley values
corresponding to the query point. The app uses the shapley
function to compute the Shapley values. When computing Shapley values, the app uses
the final model, trained on the full data set (including training and validation
data, but excluding test data).
Note
Classification Learner does not support Shapley explanations for binary GLM logistic regression models or models trained after applying feature selection or PCA.
Select Query Point
To select a query point, you can use various controls.
To the right of the Shapley plots, under Data, choose whether to select a query point from the Training set data or Test set data. The training set refers to the data used to train the final model and includes all the observations that are not reserved for testing.
Above the left plot, under Select Query Point, choose whether to select a query point from a plot (Plot) or a table (Table). If using a plot, click a point in the plot to designate the associated observation as the query point. If using a table, click a row in the table to select the associated observation as the query point.
Alternatively, select a query point using the index of the observation in the selected data set. To the right of the Shapley plots, under Query Point, enter the observation index.
To make selecting a query point from a plot easier, you can change the plot display by using the controls below the left plot. You can select the x-axis and y-axis variables and choose the values to display (such as correctly classified observations and incorrectly classified observations).
After selecting a query point, you can expand the Shapley Explanations display by hiding the Select Query Point display. To the right of the Shapley plots, under Data, clear the Show query points check box.
Plot Shapley Explanations
Given a query point, view the Shapley values for its predicted class by using the Shapley Explanations display. Each Shapley value explains the deviation of the score for the query point from the average score for the predicted class, due to the corresponding predictor. Choose whether to view the results using a bar graph (Plot) or a table (Table).
By default, the horizontal bar graph shows the predicted class Shapley values for all predictors, sorted by their absolute values. To see the Shapley values for other classes, check the corresponding Show boxes under Shapley Plot to the right of the Shapley plots. The bar color in the bar graph indicates the class.
The table includes the predictor values at the query point along with the Shapley values for every class.
Below the display of the Shapley explanations, the app shows the query point predicted score and the average model predicted score for the predicted class. The sum of the Shapley values equals the difference between the two predictions.
If the trained model includes many predictors, you can choose to display only the most important predictors in the bar graph. To the right of the Shapley plots, under Shapley Plot, specify the number of important predictors to show in the Shapley Explanations bar graph. The app displays the specified number of Shapley values with the largest absolute value.
Adjust Shapley Options
To adjust Shapley options, you can use various controls to the right of the Shapley plots. Under Shapley Options, you can set these options:
Num data samples — Specify the number of observations sampled from the training set to use for Shapley value computations. (Recall that the training set contains the data used to train the final model and includes all the observations that are not reserved for testing.) If the value equals the number of observations in the training set, the app uses every observation in the data set.
When the training set has over 1000 observations, the Shapley value computations might be slow. For faster computations, consider using a smaller number of data samples. For more information, see NumObservationsToSample.
Method — Specify the algorithm to use when computing Shapley values. The
Interventional
option computes Shapley values with an interventional value function. When Max num subsets mode isAuto
, the app uses the Kernel SHAP, Linear SHAP, or Tree SHAP algorithm, depending on the trained model type and other specified options. When you set Max num subsets mode toManual
, the app uses the KernelSHAP algorithm. TheConditional
option always uses the extension to the Kernel SHAP algorithm with a conditional value function. For more information, seeMethod
.Max num subsets mode — Allow the app to choose the maximum number of predictor subsets automatically, or specify a value manually. You can check the number of predictor subsets used by querying the
NumSubsets
property of the exported results object. For more information, see Export Shapley Results.Manual max num subsets — When you set Max num subsets mode to
Manual
, specify the maximum number of predictor subsets to use for Shapley value computations. In this case, the app uses the Kernel SHAP algorithm when Method isInterventional
, and the extension to the Kernel SHAP algorithm when Method isConditional
. For more information, seeMaxNumSubsets
.
For more information on the algorithms used to compute Shapley values, see Shapley Values for Machine Learning Model.
Perform What-If Analysis
After computing the Shapley results for a query point, you can perform what-if analysis and compare the Shapley results for the original query point to the results for a custom query point. For example, you can see whether the important predictors change when the query point predictor values deviate slightly from their original values.
To the right of the Shapley plots, under Query Point, select What-if analysis. The app creates a table that shows the predictor values for the original query point and a custom query point. Manually specify the predictor values of the custom query point by editing the Custom Value table entries. To better see the table entries, you can increase the width of the plot options panel by using the plus button + at the top of the panel.
After you specify a custom query point, the app updates the display of the Shapley results.
The query point plot shows the original query point as a black circle and the custom query point as a green square.
The Shapley explanations bar graph shows the Shapley values for the original and custom query points, and differentiates the two sets of bars by using different colors and edge styles.
The Shapley explanations table includes the Shapley and predictor values for both query points.
Below the display of the Shapley explanations, you can find the model predictions for both query points.
Export Shapley Results
After computing Shapley values, you can export your results by using options in the Export section on the Explain tab.
To export the Shapley explanations bar graph to a figure, click Export Plot and select Export Plot to Figure.
To export the Shapley explanations table and the query point model explainer object to the workspace, click Export Plot and select Export Plot Data. In the Export Local Shapley Plot Data dialog box, edit the name of the exported variable, if necessary, and click OK. The app creates a structure array that contains the Shapley results table and the explainer object. If you specify a custom query point by using what-if analysis, the model explainer object corresponds to the custom query point. For more information on the explainer object, see
shapley
.
Explain Global Model Predictions Using Shapley Importance Plot
Use the Shapley values of predictors for a set of query points to interpret which predictors have the largest (or smallest) average impact on model output magnitude. For classification models, predictions are class scores. The Shapley value of a predictor for a query point explains the deviation of the prediction for the query point from the average prediction, due to the predictor. The sign of the Shapley value indicates the direction of this deviation, and the absolute value indicates its magnitude. The mean of the absolute Shapley values for a predictor over all query points, therefore, provides a measure of the predictor's importance for model predictions.
After you train a model in Classification Learner, select the model in the
Models pane. On the Explain tab, in
the Global Importance section, click Shapley
Importance. The app opens a new tab and computes the Shapley values
for a set of query points using the shapley
function. When computing Shapley values, the app uses the final model, trained on
the full data set (including training and validation data, but excluding test data).
When the computation is complete, the app displays a bar chart of the mean absolute
Shapley values of all classes for the top predictors, sorted from highest to lowest.
Point to a bar to display information about the mean absolute Shapley value. Select
the classes to display by checking the boxes in the Classes
table to the right of the plot.
Note
Classification Learner does not support global Shapley explanations for binary GLM logistic regression models or models trained after applying PCA.
If the trained model includes many predictors, you can choose to display only the most important predictors in the bar chart. To the right of the Shapley plot, enter a value in the Show top N predictors box to display the N predictors with the largest cumulative mean absolute Shapley values (summed over all selected classes). If the data set contains more than N predictors, the plot includes a bar that shows the sum of the other predictor values.
To view a table of Shapley computation parameters, click Shapley Parameters to the right of the Shapley plot. You can edit these parameters by clicking Edit. For more information, see Adjust Global Shapley Plot Parameters.
Export Shapley Results
After computing Shapley values, you can export your results by using options in the Export section on the Explain tab.
To export the Shapley plot to a figure, click Export Plot and select Export Plot to Figure.
To export the Shapley plot results to the workspace, click Export Plot and select Export Plot Data. In the dialog box, edit the name of the exported variable, if necessary, and click OK. The app creates a structure array that contains the Shapley explainer object. For more information on the explainer object, see
shapley
.
Explain Global Model Predictions Using Shapley Summary Plot
Use the Shapley values of predictors for a set of query points to interpret the impact of individual predictors on model predictions for a specific class. For classification models, predictions are class scores. The Shapley value of a predictor for a query point explains the deviation of the prediction for the query point from the average prediction, due to the predictor. The sign of the Shapley value indicates the direction of this deviation, and the absolute value indicates its magnitude. Therefore, Shapley values near zero indicate that the predictor has a minimal impact on the model predictions for that query point.
After you train a model in Classification Learner, select the model in the
Models pane. On the Explain tab, in
the Global Importance section, click Shapley
Summary. The app opens a new tab and computes the Shapley values for
a set of query points using the shapley
function. When computing Shapley values, the app uses the final model, trained on
the full data set (including training and validation data, but excluding test data).
When the computation is complete, the app calls the swarmchart
function and displays a swarm chart of the Shapley values
for the top predictors, sorted from highest to lowest mean absolute Shapley value.
Point to a query point to display its Shapley value, predictor name, predictor
value, and data set index.
Note
Classification Learner does not support global Shapley explanations for binary GLM logistic regression models or models trained after applying PCA.
You can change Shapley plot and computation options using the menus located to the right of the plot.
The app colors each query point according to its relative predictor value, from low to high. You can select a different colormap from the Colormap list. The example above uses the
carbig
data set and theTurbo
colormap. The query points forCylinders
with Shapley values higher than 0.1 have dark red colors, indicating that they have highCylinders
values. Their high positive Shapley values suggest that if an observation has a largeCylinders
value, there is a strong positive impact on the prediction likelihood that the observation has classUSA
. To explore the Shapley values for specific predictors in more detail, see Explain Global Model Predictions Using Shapley Dependence Plot.By default, the Shapley summary plot shows the Shapley values for the first response in the data set. You can select a different class in the list under Class.
If the trained model includes many predictors, you can choose to display only the most important predictors. To the right of the Shapley plot, enter a value in the Show top N predictors box to display the N predictors with the largest mean absolute Shapley values (for the selected class).
By default, the app plots each predictor Shapley value with a random vertical offset (jitter) whose magnitude depends on the density of query points along the x-axis for that predictor. To apply a uniform random vertical jitter to the Shapley values, select
randomly
from the Jitter points list.To display a box chart instead of a swarm chart, click Box chart under Style. You can add a random vertical offset to the outlier points by selecting
true
in the Jitter outliers list. For more information, seeboxchart
.To view a table of Shapley computation parameters, click Shapley Parameters. You can edit these parameters by clicking Edit. For more information, see Adjust Global Shapley Plot Parameters.
Export Shapley Results
After computing Shapley values, you can export your results by using options in the Export section on the Explain tab.
To export the Shapley plot to a figure, click Export Plot and select Export Plot to Figure.
To export the Shapley plot results to the workspace, click Export Plot and select Export Plot Data. In the dialog box, edit the name of the exported variable, if necessary, and click OK. The app creates a structure array that contains the Shapley explainer object. For more information on the explainer object, see
shapley
.
Explain Global Model Predictions Using Shapley Dependence Plot
Use the Shapley values of predictors for a set of query points to interpret the impact of individual predictors on model predictions for a specific class. For classification models, predictions are class scores. The Shapley value of a predictor for a query point explains the deviation of the prediction for the query point from the average prediction, due to the predictor. The sign of the Shapley value indicates the direction of this deviation, and the absolute value indicates its magnitude. Therefore, Shapley values near zero indicate that the predictor has a minimal impact on the model predictions for that query point.
After you train a model in Classification Learner, select the model in the
Models pane. On the Explain tab, in
the Global Dependence section, click Shapley
Dependence. The app opens a new tab and computes the Shapley values
for a set of query points using the shapley
function. When computing Shapley values, the app uses the final model, trained on
the full data set (including training and validation data, but excluding test data).
When the computation is complete, the app calls the plotDependence
function and displays a scatter plot of the Shapley
values versus predictor values. If the selected predictor is categorical, the app
displays a box chart instead. By default, the plot shows the first response class
and first predictor in the data set. Point to a query point of a predictor to
display its values.
Note
Classification Learner does not support global Shapley explanations for binary GLM logistic regression models or models trained after applying PCA.
You can change Shapley plot and computation options using the menus located to the right of the plot.
You can color the query points based on a second predictor value by selecting an entry in the Color list under Predictors. Select a colormap from the Colormap list, and restrict the colormap to a specific range of predictor values by entering values in the Minimum and Maximum boxes under Colormap Range. The example above uses the
carbig
data set and the defaultParula
colormap. The plot displays Shapley values forDisplacement
and theUSA
class. The cluster of query points with Shapley values near –0.4 andDisplacement
values near 100 have blue colors, indicating that they have relatively lowWeight
values. Their high negative Shapley values suggest that if an observation has a lowDisplacement
value and a lowWeight
value, there is a negative impact on the prediction likelihood that this observation has classUSA
.Select a different class in the list under Class.
To display a different predictor, select an entry in the X-axis list under Predictors.
To view a table of Shapley computation parameters, click Shapley Parameters. You can edit these parameters by clicking Edit. For more information, see Adjust Global Shapley Plot Parameters.
Export Shapley Results
After computing Shapley values, you can export your results by using options in the Export section on the Explain tab.
To export the Shapley plot to a figure, click Export Plot and select Export Plot to Figure.
To export the Shapley plot results to the workspace, click Export Plot and select Export Plot Data. In the dialog box, edit the name of the exported variable, if necessary, and click OK. The app creates a structure array that contains the Shapley explainer object. For more information on the explainer object, see
shapley
.
Adjust Global Shapley Plot Parameters
To adjust Shapley options for the global Shapley plots, click Shapley Parameters to the right of the Shapley plot and click Edit. In the Shapley Parameters dialog box, you can set these options under Query points:
Query data set — Specify the data set from which to draw the query points. If you have not loaded a test data set, the app draws query points from the training data. Otherwise, you can choose to draw query points from the training data, the test data, or all data (training and test).
Num query points — Specify the number of query points to randomly select from the query data set. For faster computations, consider using a smaller number of query points.
You can set these additional options under Advanced settings:
Shapley method — Specify the algorithm to use when computing Shapley values. The
Interventional (auto)
option computes Shapley values with an interventional value function, and uses the Kernel SHAP algorithm. TheConditional
option uses the extension to the Kernel SHAP algorithm with a conditional value function. For more information, seeMethod
.Shapley observation samples — Specify the number of observations sampled from the training set to use for Shapley value computations. (Recall that the training set contains the data used to train the final model and includes all the observations that are not reserved for testing.) If the value equals the number of observations in the training set, the app uses every observation in the data set. For more information, see
NumObservationsToSample
.Tip
When the training set has over 1000 observations, the Shapley value computations might be slow. For faster computations, consider using a smaller number of observation samples.
Maximum predictor subsets — Select the maximum number of predictor subsets to use for Shapley value computations. For more information, see
MaxNumSubsets
.
To apply the settings and recompute the Shapley values, click Save and Recompute. The app updates the Shapley importance, Shapley summary, and Shapley dependence plots for the currently selected model. For more information on the algorithms used to compute Shapley values, see Shapley Values for Machine Learning Model.
Interpret Model Using Partial Dependence Plots
Partial dependence plots (PDPs) allow you to visualize the marginal effect of each predictor on the predicted scores of a trained classification model. After you train a model in Classification Learner, you can view a partial dependence plot for the model. On the Explain tab, in the Global Dependence section, click Partial Dependence. When computing partial dependence values, the app uses the final model, trained on the full data set (including training and validation data, but excluding test data).
To investigate your results, use the controls on the right.
Under Data, choose whether to plot results using Training set data or Test set data. The training set refers to the data used to train the final model and includes all the observations that are not reserved for testing.
Under Feature, choose the feature to plot using the X list. The x-axis tick marks in the plot correspond to the unique predictor values in the selected data set.
If you use PCA to train a model, you can select principal components from the X list.
Visualize the predicted scores by class. Each line in the plot corresponds to the average predicted scores across the predictor values for a specific class. Show or hide a plotted line by checking or clearing the corresponding Show box under Classes. Make a plotted line thicker by clicking the corresponding Class name under Classes.
Zoom in and out, or pan across the plot. To enable zooming or panning, place the mouse over the PDP and click the corresponding button on the toolbar that appears above the top right of the plot.
For an example, see Use Partial Dependence Plots to Interpret Classifiers Trained in Classification Learner App. For more
information on partial dependence plots, see plotPartialDependence
.
To export PDPs you create in the app to figures, see Export Plots in Classification Learner App.
See Also
lime
| shapley
| plotPartialDependence
| partialDependence