1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47
|
# lm: .lm, .summary.lm
# .lm ---------------------
#' @export
p_value.lm <- p_value.default
#' @export
ci.lm <- function(x, ci = 0.95, method = "residual", ...) {
.ci_generic(model = x, ci = ci, method = method, ...)
}
# .summary.lm ---------------------
#' @export
standard_error.summary.lm <- function(model, ...) {
cs <- stats::coef(model)
data.frame(
Parameter = rownames(cs),
SE = as.vector(cs[, 2]),
stringsAsFactors = FALSE,
row.names = NULL
)
}
#' @export
p_value.summary.lm <- function(model, ...) {
cs <- stats::coef(model)
data.frame(
Parameter = rownames(cs),
p = as.vector(cs[, 4]),
stringsAsFactors = FALSE,
row.names = NULL
)
}
#' @export
ci.summary.lm <- function(x, ci = 0.95, method = "residual", ...) {
.ci_generic(model = x, ci = ci, method = method, dof = insight::get_df(x), ...)
}
|