Learn R Programming

tidyAML (version 0.0.6)

plot_regression_predictions: Create ggplot2 plot of regression predictions

Description

Create a ggplot2 plot of regression predictions.

Usage

plot_regression_predictions(.data, .output = "list")

Value

A list of ggplot2 plots or a faceted plot.

Arguments

.data

The data from the output of the extract_wflw_pred() function.

.output

The default is "list" which will return a list of plots. The other option is "facet" which will return a single faceted plot.

Author

Steven P. Sanderson II, MPH

Details

Create a ggplot2 plot of regression predictions, the actual, training, and testing values. The output of this function can either be a list of plots or a single faceted plot. This function takes the output of the function extract_wflw_pred() function.

See Also

Other Plotting: plot_regression_residuals()

Examples

Run this code
library(recipes)

rec_obj <- recipe(mpg ~ ., data = mtcars)
frt_tbl <- fast_regression(
  mtcars,
  rec_obj,
  .parsnip_eng = c("lm","glm"),
  .parsnip_fns = "linear_reg"
  )

extract_wflw_pred(frt_tbl,1) |> plot_regression_predictions()
extract_wflw_pred(frt_tbl,1:nrow(frt_tbl)) |>
  plot_regression_predictions(.output = "facet")

Run the code above in your browser using DataLab