tidypredict_sql_interval | R Documentation |
Returns a SQL query with formula to calculate predicted interval
tidypredict_sql_interval(model, con, interval = 0.95)
model |
An R model or a tibble with a parsed model |
con |
Database connection object. It is used to select the correct SQL translation syntax. |
interval |
The prediction interval, defaults to 0.95 |
library(dbplyr) model <- lm(mpg ~ wt + am + cyl, data = mtcars) tidypredict_sql_interval(model, simulate_dbi())
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.