Learn R Programming

sqlm (version 0.1.0)

glance.lm_sql_result: Glance at an lm_sql_result

Description

Extract a single-row tibble of model-level summary statistics from a fitted SQL linear model.

Usage

# S3 method for lm_sql_result
glance(x, ...)

Value

A single-row tibble with columns `r.squared`, `adj.r.squared`, `sigma`, `statistic`, `p.value`, `df`, `logLik`, `AIC`, `BIC`, `nobs`, and `df.residual`.

Arguments

x

An `lm_sql_result` object.

...

Not used.

Details

Returns R-squared, adjusted R-squared, residual standard error, F-statistic and its p-value, model degrees of freedom, log-likelihood, AIC, BIC, number of observations, and residual degrees of freedom.