Nothing
hypothesis_matrix <- function(x, hypothesis) {
if (isTRUE(checkmate::check_atomic_vector(hypothesis))) {
hypothesis <- matrix(hypothesis, ncol = 1)
}
checkmate::assert_matrix(hypothesis, nrows = nrow(x))
if (is.null(colnames(hypothesis))) {
colnames(hypothesis) <- rep("custom", ncol(hypothesis))
}
# bayesian
draws <- attr(x, "posterior_draws")
if (!is.null(draws)) {
draws <- t(as.matrix(hypothesis)) %*% draws
out <- data.table(
term = colnames(hypothesis),
tmp = apply(draws, 1, stats::median))
setnames(out, old = "tmp", new = "estimate")
attr(out, "posterior_draws") <- draws
# frequentist
} else {
out <- data.table(
term = colnames(hypothesis),
tmp = as.vector(x[["estimate"]] %*% hypothesis))
setnames(out, old = "tmp", new = "estimate")
}
out <- out[out$term != "1 - 1", , drop = FALSE]
return(out)
}
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.