parsnip (version 0.1.1)

mars: General Interface for MARS

Description

mars() is a way to generate a specification of a model before fitting and allows the model to be created using R. The main arguments for the model are:

  • num_terms: The number of features that will be retained in the final model.

  • prod_degree: The highest possible degree of interaction between features. A value of 1 indicates and additive model while a value of 2 allows, but does not guarantee, two-way interactions between features.

  • prune_method: The type of pruning. Possible values are listed in ?earth.

These arguments are converted to their specific names at the time that the model is fit. Other options and argument can be set using set_engine(). If left to their defaults here (NULL), the values are taken from the underlying model functions. If parameters need to be modified, update() can be used in lieu of recreating the object from scratch.

Usage

mars(
  mode = "unknown",
  num_terms = NULL,
  prod_degree = NULL,
  prune_method = NULL
)

# S3 method for mars update( object, parameters = NULL, num_terms = NULL, prod_degree = NULL, prune_method = NULL, fresh = FALSE, ... )

Arguments

mode

A single character string for the type of model. Possible values for this model are "unknown", "regression", or "classification".

num_terms

The number of features that will be retained in the final model, including the intercept.

prod_degree

The highest possible interaction degree.

prune_method

The pruning method.

object

A MARS model specification.

parameters

A 1-row tibble or named list with main parameters to update. If the individual arguments are used, these will supersede the values in parameters. Also, using engine arguments in this object will result in an error.

fresh

A logical for whether the arguments should be modified in-place of or replaced wholesale.

...

Not used for update().

Engine Details

Engines may have pre-set default arguments when executing the model fit call. For this type of model, the template of the fit calls are below.

earth

mars() %>% 
  set_engine("earth") %>% 
  set_mode("regression") %>% 
  translate()
## MARS Model Specification (regression)
## 
## Computational engine: earth 
## 
## Model fit template:
## earth::earth(x = missing_arg(), y = missing_arg(), weights = missing_arg(), 
##     keepxy = TRUE)
mars() %>% 
  set_engine("earth") %>% 
  set_mode("classification") %>% 
  translate()
## MARS Model Specification (classification)
## 
## Engine-Specific Arguments:
##   glm = list(family = stats::binomial)
## 
## Computational engine: earth 
## 
## Model fit template:
## earth::earth(x = missing_arg(), y = missing_arg(), weights = missing_arg(), 
##     glm = list(family = stats::binomial), keepxy = TRUE)

Note that, when the model is fit, the earth package only has its namespace loaded. However, if multi_predict is used, the package is attached.

Parameter translations

The standardized parameter names in parsnip can be mapped to their original names in each engine that has main parameters:

parsnip earth
num_terms nprune
prod_degree degree
prune_method pmethod

Details

The model can be created using the fit() function using the following engines:

  • R: "earth" (the default)

See Also

fit()

Examples

Run this code
# NOT RUN {
mars(mode = "regression", num_terms = 5)
model <- mars(num_terms = 10, prune_method = "none")
model
update(model, num_terms = 1)
update(model, num_terms = 1, fresh = TRUE)
# }

Run the code above in your browser using DataLab