Skip to content

Commit

Permalink
Fixed wrong argument name.
Browse files Browse the repository at this point in the history
  • Loading branch information
alexzwanenburg committed Dec 4, 2024
1 parent cf39f0d commit 482b0ec
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion vignettes/original/evaluation_and_explanation.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ plots, do not benefit from bootstraps as they are solely based on values
predicted by the (ensemble) models. If you want to compute bias-corrected
estimates or bootstrap confidence intervals for these analyses you should ensure
that sufficient models are created. Experimental designs such as
`experiment_design="bs(fs+mb,400)+ev"` allow for this, but are computationally
`experimental_design="bs(fs+mb,400)+ev"` allow for this, but are computationally
expensive.

| Name | Plot function | Export function | Estimation type | Detail level | Sample limit | Stand-alone |
Expand Down
4 changes: 2 additions & 2 deletions vignettes/original/introduction.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -494,14 +494,14 @@ Familiar implements the following subsampling methods:

The `x` argument of subsample methods can contain one or more of the workflow
components. Moreover, it is possible to nest subsample methods. For example,
`experiment_design="cv(bt(fs,50)+mb,5)+ev"` would create a 5-fold
`experimental_design="cv(bt(fs,50)+mb,5)+ev"` would create a 5-fold
cross-validation of the development dataset, with each set of training folds
again subsampled for computing variable importances. After aggregating variable
importance obtained over 50 bootstraps, a model is trained within each set of
training folds, resulting in 5 models overall. The ensemble of these models is
then evaluated on an external dataset.

Other designs, such as `experiment_design="bs(fs+mb,400)+ev"` allow for building
Other designs, such as `experimental_design="bs(fs+mb,400)+ev"` allow for building
large ensembles, and capturing the posterior distribution of the model
predictions.

Expand Down

0 comments on commit 482b0ec

Please sign in to comment.