Partial dependence plots show the dependence of a model to one of its features,
averaging the other features
Compute now to discover dependence of this model to {{ uiState.selectedFeature }}
A partial dependence plot shows the dependence of the predicted response on a single feature. The x axis displays the value of the selected feature, while the y axis displays the partial dependence.
The value of the partial dependence is by how much the prediction is higher or lower than average.
The value of the partial dependence is by how much the log-odds are higher or lower than those of the average probability.
The value of the partial dependence for a class is by how much the log-odds for this class are higher or lower than those of the average class probability.
Note : the log-odds for a probability p are defined as log(p / (1 - p)).
They are strictly increasing, ie. higher log odds mean higher probability.
Note: because you are using k-fold cross-testing, the partial dependence is computed on the full dataset.