Nothing
#' Confidence Intervals for
#' Standardized Regression Coefficients
#'
#' @author Ivan Jacob Agaloos Pesigan
#'
#' @return Returns a matrix of
#' standardized regression slopes,
#' standard errors,
#' test statistics,
#' p-values,
#' and
#' confidence intervals.
#'
#' @param object Object of class `betadelta`.
#' @param alpha Numeric vector.
#' Significance level \eqn{\alpha}.
#'
#' @family Beta Delta Functions
#' @keywords betaDelta ci internal
#' @noRd
.BetaCI <- function(object,
alpha = NULL) {
stopifnot(
inherits(
object,
"betadelta"
)
)
if (is.null(alpha)) {
alpha <- object$args$alpha
}
stopifnot(
all(alpha > 0 & alpha < 1)
)
return(
.CIWald(
est = object$est,
se = sqrt(diag(object$vcov)),
theta = 0,
alpha = alpha,
z = FALSE,
df = object$lm_process$df
)
)
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.