ci_lower | R Documentation |
Calculate lower and upper confidence intervals given a mean,
standard deviation, sample size, and confidence level. You may
want to use ci_var()
to calculate all values quickly.
ci_lower(mean, ssd, n, conf = 0.95)
ci_upper(mean, ssd, n, conf = 0.95)
mean |
Numeric. Mean: |
ssd |
Numeric. Standard deviation: |
n |
Integer. Amount of observations: |
conf |
Numeric (0-1). Confidence level. |
Vector with confidence limit value.
Other Confidence:
ci_var()
ci_lower(100, 5, 10)
ci_upper(100, 5, 10)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.