Nothing
ci_to_ddsc_ml <- function(results, level) {
ci.lower <- results[, "estimate"] +
stats::qt(p = (1 - level) / 2, df = results[, "df"]) * results[, "SE"]
ci.upper <- results[, "estimate"] +
stats::qt(p = 1 - (1 - level) / 2, df = results[, "df"]) * results[, "SE"]
CIs <- cbind(ci.lower, ci.upper)
return(CIs)
}
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.