View source: R/predict-column.R
| tidypredict_to_column | R Documentation | 
Adds a new column with the results from tidypredict_fit() to a piped command set. If add_interval is set to TRUE, it will add two additional columns- one for the lower and another for the upper prediction interval bounds.
tidypredict_to_column(
  df,
  model,
  add_interval = FALSE,
  interval = 0.95,
  vars = c("fit", "upper", "lower")
)
df | 
 A data.frame or tibble  | 
model | 
 An R model or a parsed model inside a data frame  | 
add_interval | 
 Switch that indicates if the prediction interval columns should be added. Defaults to FALSE  | 
interval | 
 The prediction interval, defaults to 0.95. Ignored if add_interval is set to FALSE  | 
vars | 
 The name of the variables that this function will produce. Defaults to "fit", "upper", and "lower".  | 
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.