Extract a tidy tibble of per-term coefficient statistics from a fitted SQL linear model.
# S3 method for lm_sql_result
tidy(x, conf.int = FALSE, conf.level = 0.95, ...)A tibble with columns `term`, `estimate`, `std.error`, `statistic`, and `p.value`. If `conf.int = TRUE`, also `conf.low` and `conf.high`.
An `lm_sql_result` object.
Logical. If `TRUE`, include confidence interval columns `conf.low` and `conf.high`. Defaults to `FALSE`.
Confidence level for the interval. Defaults to `0.95`.
Not used.
Returns one row per model term with the estimate, standard error, t-statistic, and p-value. When `conf.int = TRUE`, confidence intervals are computed using the t-distribution with `df_residual` degrees of freedom.