Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion learn/develop/models/index.qmd
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ show_model_info("discrim_mixture")

The next step is to declare the main arguments to the model. These are declared independent of the mode. To specify the argument, there are a few slots to fill in:

* The name that parsnip uses for the argument. In general, we try to use non-jargony names for arguments (e.g. "penalty" instead of "lambda" for regularized regression). We recommend consulting [the model argument table available here](/find/parsnip/) to see if an existing argument name can be used before creating a new one.
* The name that parsnip uses for the argument. In general, we try to use non-jargony names for arguments (e.g. "penalty" instead of "lambda" for regularized regression). We recommend consulting the model engine topics pages, linked from [the searchable table here](/find/parsnip/), to see if an existing argument name can be used before creating a new one.

* The argument name that is used by the underlying modeling function.

Expand Down