## ----setup, include=FALSE-----------------------------------------------------
library(GMisc)
knitr::opts_chunk$set(
echo = TRUE,
message = FALSE,
warning = FALSE,
error = FALSE,
fig.align = "center",
out.width = "80%"
)
## -----------------------------------------------------------------------------
ci_z(x = 80, sig = 15, n = 20, conf.level = 0.95)
## -----------------------------------------------------------------------------
ci_z2(x1 = 42, sig1 = 8, n1 = 75, x2 = 36, sig2 = 6, n2 = 50, conf.level = 0.95)
## -----------------------------------------------------------------------------
ci_t(x = 80, s = 15, n = 20, conf.level = 0.95)
## -----------------------------------------------------------------------------
ci_t2(x1 = 42, s1 = 8, n1 = 75, x2 = 36, s2 = 6, n2 = 50, conf.level = 0.95)
## -----------------------------------------------------------------------------
ci_chisq(s = 0.535, n = 10, conf.level = 0.95)
## -----------------------------------------------------------------------------
ci_F(s1 = 3.1, n1 = 15, s2 = 0.8, n2 = 12, conf.level = 0.95)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.