dials (version 0.0.9)

pull_dials_object: Return a dials parameter object associated with parameters

Description

pull_dials_object() can extract a single dials parameter object from different types of objects (e.g. parameter sets, recipes, etc.).

Usage

pull_dials_object(x, id, ...)

# S3 method for parameters pull_dials_object(x, id, ...)

# S3 method for recipe pull_dials_object(x, id, ...)

# S3 method for model_spec pull_dials_object(x, id, ...)

# S3 method for workflow pull_dials_object(x, id, ...)

Arguments

x

The results of a call to parameters(), a recipe, model specification, or workflow.

id

A single string for the id of the parameter.

...

Not currently used.

Value

A dials parameter object.

Examples

Run this code
# NOT RUN {
glmn_param <- parameters(lambda = penalty(), mixture())
pull_dials_object(glmn_param, "lambda")

# fails:
# pull_dials_object(glmn_param, "penalty")
# }

Run the code above in your browser using DataLab