Skip to content

Commit 45bfb22

Browse files
committed
fix links in R_double_ml_pipeline.ipynb
1 parent 13b166b commit 45bfb22

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

doc/examples/R_double_ml_pipeline.ipynb

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -197,7 +197,7 @@
197197
"source": [
198198
"To specify a learner for the nuisance part in a causal model, we can either use [mlr3](https://mlr3.mlr-org.com/)'s [LearnerRegr](https://mlr3.mlr-org.com/reference/LearnerRegr.html) for a model's nuisance part with a continuous dependent variable or a [LearnerClassif](https://mlr3.mlr-org.com/reference/LearnerClassif.html) if the corresponding outcome variable is binary. \n",
199199
"\n",
200-
"Moreover, it's possible to create a learner based on a pipeline. For example, we could think of [ensemble learners](https://mlr3book.mlr-org.com/pipelines.html#pipe-model-ensembles) which combine several estimators."
200+
"Moreover, it's possible to create a learner based on a pipeline. For example, we could think of [ensemble learners](https://mlr3book.mlr-org.com/pipelines.html#sec-pipelines-intro) which combine several estimators."
201201
]
202202
},
203203
{
@@ -1094,7 +1094,7 @@
10941094
"id": "e4ddb48a",
10951095
"metadata": {},
10961096
"source": [
1097-
"Alternatively, different learners could also be stacked. Here we simply repeat the example from the [Pipelines Chapter in the mlr3book](https://mlr3book.mlr-org.com/pipelines.html#pipe-model-ensembles-stacking) in our Bonus data example."
1097+
"Alternatively, different learners could also be stacked. Here we simply repeat the example from the [Pipelines Chapter in the mlr3book](https://mlr3book.mlr-org.com/pipelines.html#sec-pipelines-stack) in our Bonus data example."
10981098
]
10991099
},
11001100
{
@@ -1241,7 +1241,7 @@
12411241
"source": [
12421242
"## How to exploit more features of `mlr3pipelines` in `DoubleML`\n",
12431243
"\n",
1244-
"[mlr3pipelines](https://mlr3pipelines.mlr-org.com/reference/Graph.html) can do much more. For example, we could use it to perform some [feature engineering](https://mlr3book.mlr-org.com/pipelines.html#pipe-modeling) and even perform pipeline-based [parameter tuning](https://mlr3book.mlr-org.com/pipelines.html#pipe-tuning). We just have to define the steps we want to have in our pipeline by using the PipeOps.\n",
1244+
"[mlr3pipelines](https://mlr3pipelines.mlr-org.com/reference/Graph.html) can do much more. For example, we could use it to perform some [feature engineering](https://mlr3book.mlr-org.com/pipelines.html#sec-pipelines-combined) and even perform pipeline-based [parameter tuning](https://mlr3book.mlr-org.com/pipelines.html#sec-pipelines-tuning). We just have to define the steps we want to have in our pipeline by using the PipeOps.\n",
12451245
"\n",
12461246
"Let's have a look at two more examples from the [Pipelines Chapter in the mlr3book](https://mlr3book.mlr-org.com/pipelines.html). In the first one, we will do some data manipulation. The second example illustrate how we could use [mlr3pipelines](https://mlr3pipelines.mlr-org.com/reference/Graph.html) for parameter tuning."
12471247
]

0 commit comments

Comments
 (0)