.. DO NOT EDIT. .. THIS FILE WAS AUTOMATICALLY GENERATED BY SPHINX-GALLERY. .. TO MAKE CHANGES, EDIT THE SOURCE PYTHON FILE: .. "auto_examples\2_explain\plot_1_pdp_hstats.py" .. LINE NUMBERS ARE GIVEN BELOW. .. only:: html .. note:: :class: sphx-glr-download-link-note :ref:`Go to the end ` to download the full example code or to run this example in your browser via Binder .. rst-class:: sphx-glr-example-title .. _sphx_glr_auto_examples_2_explain_plot_1_pdp_hstats.py: H-statistics ===================================== .. GENERATED FROM PYTHON SOURCE LINES 9-10 Experiment initialization and data preparation .. GENERATED FROM PYTHON SOURCE LINES 10-18 .. code-block:: default from piml import Experiment from piml.models import XGB2Regressor exp = Experiment() exp.data_loader(data="Friedman", silent=True) exp.data_summary(silent=True) exp.data_prepare(target="target", task_type="regression", silent=True) .. GENERATED FROM PYTHON SOURCE LINES 19-20 Train Model .. GENERATED FROM PYTHON SOURCE LINES 20-22 .. code-block:: default exp.model_train(model=XGB2Regressor(n_estimators=100), name="XGB2") .. GENERATED FROM PYTHON SOURCE LINES 23-24 Run H-statistics with 2000 subsampled data and grid size of 5 .. GENERATED FROM PYTHON SOURCE LINES 24-27 .. code-block:: default res = exp.model_explain(model="XGB2", show="hstats", sample_size=2000, grid_size=5, return_data=True, figsize=(5, 4)) res.data .. image-sg:: /auto_examples/2_explain/images/sphx_glr_plot_1_pdp_hstats_001.png :alt: Interaction Importance (H-Statistic) :srcset: /auto_examples/2_explain/images/sphx_glr_plot_1_pdp_hstats_001.png :class: sphx-glr-single-img .. raw:: html
Feature 1 Feature 2 Importance
0 X0 X1 8.354665e-02
1 X0 X3 5.772886e-03
2 X3 X4 4.769194e-03
3 X1 X4 4.488876e-03
4 X1 X3 3.939141e-03
5 X2 X4 2.891201e-03
6 X0 X4 2.615382e-03
7 X2 X3 1.110027e-03
8 X1 X2 9.062784e-04
9 X0 X2 4.224594e-04
10 X4 X7 4.187721e-04
11 X6 X9 2.826716e-04
12 X1 X6 2.798646e-04
13 X1 X9 2.139691e-04
14 X0 X9 1.499676e-04
15 X2 X9 1.367038e-04
16 X3 X9 1.256837e-04
17 X0 X6 1.022405e-04
18 X3 X6 1.017541e-04
19 X2 X5 3.553405e-06
20 X4 X6 2.510080e-06
21 X1 X5 2.003126e-06
22 X2 X6 2.001398e-06
23 X0 X8 9.355216e-07
24 X1 X8 8.842721e-07
25 X7 X9 3.703580e-07
26 X2 X8 3.405027e-07
27 X4 X8 2.302398e-07
28 X0 X7 2.020537e-07
29 X5 X8 6.266068e-08
30 X5 X7 4.271688e-08
31 X0 X5 3.382035e-09
32 X7 X8 2.910548e-09
33 X5 X6 1.166214e-09
34 X6 X7 5.757503e-10
35 X6 X8 4.158681e-10
36 X5 X9 2.689033e-10
37 X8 X9 2.289872e-10
38 X4 X5 1.034555e-12
39 X4 X9 5.418748e-13
40 X2 X7 1.989873e-13
41 X3 X8 1.310739e-13
42 X3 X5 1.203739e-13
43 X1 X7 7.804507e-14
44 X3 X7 5.885018e-14


.. rst-class:: sphx-glr-timing **Total running time of the script:** ( 0 minutes 18.682 seconds) **Estimated memory usage:** 11 MB .. _sphx_glr_download_auto_examples_2_explain_plot_1_pdp_hstats.py: .. only:: html .. container:: sphx-glr-footer sphx-glr-footer-example .. container:: binder-badge .. image:: images/binder_badge_logo.svg :target: https://mybinder.org/v2/gh/selfexplainml/piml-toolbox/main?urlpath=lab/tree/./docs/_build/html/notebooks/auto_examples/2_explain/plot_1_pdp_hstats.ipynb :alt: Launch binder :width: 150 px .. container:: sphx-glr-download sphx-glr-download-python :download:`Download Python source code: plot_1_pdp_hstats.py ` .. container:: sphx-glr-download sphx-glr-download-jupyter :download:`Download Jupyter notebook: plot_1_pdp_hstats.ipynb ` .. only:: html .. rst-class:: sphx-glr-signature `Gallery generated by Sphinx-Gallery `_