TIntervalS | R Documentation |
Student-T tolerance-style interval around an estimate of a mean from summary.
TIntervalS(
sample_size,
sample_mean,
sample_var,
...,
nNA = 0,
conf.level = 0.95
)
sample_size |
numeric scalar integer, size of sample. |
sample_mean |
numeric scalar, mean of sample. |
sample_var |
numeric scalar, variance of sample (Bessel-corrected). |
... |
extra arguments passed to TInterval. |
nNA |
number of NAs seen. |
conf.level |
confidence level to draw interval |
wrapped stat
TInterval
, TIntervalS
, TInterval.numeric
, TInterval.data.frame
set.seed(2018)
d <- rnorm(100) + 3.2
TIntervalS(length(d), mean(d), stats::var(d))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.