Nothing
#' S3 Methods for `prediction_cf`
#' @param x (`prediction_cf`)\cr the obtained counter-factual prediction object.
#' @param level (`number`)\cr the significance level.
#' @name prediction_cf_methods
#' @return No return value.
NULL
#' @describeIn prediction_cf_methods prints the prediction_cf object.
#' @exportS3Method
#' @keywords internal
print.prediction_cf <- function(x, level = 0.95, ...) {
assert_number(level, lower = 0, upper = 1)
cat("Model : ", deparse(as.formula(x$fit)), "\n")
cat(
"Randomization: ",
deparse(x$treatment_formula),
" (",
randomization_schema$schema[randomization_schema$id == x$schema],
")\n"
)
cat("Variance Type: ", x$variance_name, "\n")
cat("Marginal Mean: \n")
stats::printCoefmat(
confint(x, level = level, include_se = TRUE),
...
)
}
#' Confidence Interval
#' @description Obtain the confidence interval for the marginal mean or the contrast.
#' @name confint
#' @param object Object to construct confidence interval.
#' @param parm (`character` or `integer`) Names of the parameters to construct confidence interval.
#' @param level (`numeric`) Confidence level.
#' @param transform (`function`) Transform function.
#' @param include_se (`flag`) Whether to include the standard error as a column in the result matrix.
#' @param ... Not used.
#' @export
#' @return A `matrix` of the confidence interval.
#' @examples
#' robin_res <- robin_glm(
#' y_b ~ treatment * s1,
#' data = glm_data, treatment = treatment ~ s1, contrast = "log_risk_ratio"
#' )
#' confint(robin_res$marginal_mean, level = 0.7)
#' confint(robin_res$contrast, parm = 1:3, level = 0.9)
confint.prediction_cf <- function(object, parm, level = 0.95, include_se = FALSE, ...) {
x <- cbind(
object$estimate,
sqrt(diag(object$variance))
)
rownames(x) <- names(object$estimate)
colnames(x) <- c("Estimate", "Std.Err")
h_confint(x, parm = parm, level = level, transform = identity, include_se = include_se, ...)
}
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.