From 0e86b388670e8cd08c9255024c302bb545c14f74 Mon Sep 17 00:00:00 2001 From: Zebin YANG Date: Tue, 19 Sep 2023 22:42:29 +0800 Subject: [PATCH] update --- docs/_build/html/_sources/guides/models/tree.rst.txt | 4 ++-- docs/_build/html/guides/models/tree.html | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/_build/html/_sources/guides/models/tree.rst.txt b/docs/_build/html/_sources/guides/models/tree.rst.txt index ec69fc6e..f2fa7486 100644 --- a/docs/_build/html/_sources/guides/models/tree.rst.txt +++ b/docs/_build/html/_sources/guides/models/tree.rst.txt @@ -41,7 +41,7 @@ By setting `show` to "tree_global", you will see the fitted decision tree diagra depth=3, original_scale=True, figsize=(16, 10)) .. figure:: ../../auto_examples/models/images/sphx_glr_plot_2_tree_reg_001.png - :target: ../../auto_examples/models/plot_2_reg_dt.html + :target: ../../auto_examples/models/plot_2_tree_reg.html :align: left To ensure the tree diagram is useful for deep trees, we offer two parameters that enable you to adjust the view. The first is `root`, which is the node ID where the tree diagram begins. By default, it starts at the actual root node, which is assigned an ID of 0. The second parameter is `depth`, which sets the maximum depth of the diagram starting from the `root` node. @@ -59,7 +59,7 @@ When using the "tree_Local" keyword, the decision path of a specific sample is h exp.model_interpret(model="Tree", show="tree_local", sample_id=0, original_scale=True, figsize=(16, 10)) .. figure:: ../../auto_examples/models/images/sphx_glr_plot_2_tree_reg_003.png - :target: ../../auto_examples/models/plot_2_reg_dt.html + :target: ../../auto_examples/models/plot_2_tree_reg.html :align: left Note that this plot may be a subset of the overall tree. Only the branches relevant to the selected sample are shown in the plot, making it easier to interpret the decision path of that particular sample within the context of the entire decision tree. diff --git a/docs/_build/html/guides/models/tree.html b/docs/_build/html/guides/models/tree.html index 670ea8e6..c4aabacb 100644 --- a/docs/_build/html/guides/models/tree.html +++ b/docs/_build/html/guides/models/tree.html @@ -284,7 +284,7 @@

5.3.2. Global Interpretation -../../_images/sphx_glr_plot_2_tree_reg_001.png +../../_images/sphx_glr_plot_2_tree_reg_001.png

To ensure the tree diagram is useful for deep trees, we offer two parameters that enable you to adjust the view. The first is root, which is the node ID where the tree diagram begins. By default, it starts at the actual root node, which is assigned an ID of 0. The second parameter is depth, which sets the maximum depth of the diagram starting from the root node.

Each box in the diagram represents a node in the decision tree. It includes information such as the node ID, the splitting rule used to split the dataset, the criterion value, the sample size, and the average value of the response.

@@ -302,7 +302,7 @@

5.3.3. Local Interpretation -../../_images/sphx_glr_plot_2_tree_reg_003.png +../../_images/sphx_glr_plot_2_tree_reg_003.png

Note that this plot may be a subset of the overall tree. Only the branches relevant to the selected sample are shown in the plot, making it easier to interpret the decision path of that particular sample within the context of the entire decision tree.