As you know we can have sensitivity analysis (sensitivity of output(s) based on changing of inputs) in different kinds of regression. Can we have sensitivity analysis for machine learning techniques (Specially Neural network and Support vector machine or others). I'm using MATLAB R2014b
for coding. How can I do that?
Asked
Active
Viewed 2,377 times
6

user2991243
- 3,621
- 4
- 22
- 48
-
If you have any news regarding your question, please post them here. – turdus-merula Oct 05 '16 at 10:43
-
1there is a book on this subject. I shared its link https://www.springer.com/gp/book/9783642025310 – Fatima Dec 31 '20 at 19:16
1 Answers
2
You can use partial dependence plots, which will give you an estimate of the sensitivity of the predicted output with regards to each of the independent variables.
See chapter 10.13.2 of the Elements of Statistical Learning by Hastie, Tibshirani, Friedman.

jaamor
- 125
- 7
-
-
PDP can apply to any function / model. The method is generic and is used in practice for classification and regression models. – jaamor Jun 20 '18 at 13:17