From 21fd787a42e503612898fa4b74a018e0b0c0fa8f Mon Sep 17 00:00:00 2001 From: Ryan Curtin Date: Mon, 25 Sep 2023 13:44:02 -0400 Subject: [PATCH] Try a direct link. --- doc/user/methods/decision_tree.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/user/methods/decision_tree.md b/doc/user/methods/decision_tree.md index 402263b5e0..a193df162b 100644 --- a/doc/user/methods/decision_tree.md +++ b/doc/user/methods/decision_tree.md @@ -6,7 +6,7 @@ feature to split on. The class offers several template parameters and several constructor parameters that can be used to control the behavior of the tree. ```c++ -DecisionTree tree(3); // [Step 1](#constructors): construct object. +DecisionTree tree(3); // Step 1: construct object. tree.Train(data, labels, 3); // [Step 2](#training): train model. tree.Classify(test_data, test_predictions); // [Step 3](#classification): use model to classify points. ```