TInterval.data.frame: Student-T tolerance-style interval around an estimate of a...

View source: R/TInterval.R

TInterval.data.frameR Documentation

Student-T tolerance-style interval around an estimate of a mean from a data.frame.

Description

Student-T tolerance-style interval around an estimate of a mean from a data.frame.

Usage

## S3 method for class 'data.frame'
TInterval(x, ColumnName, ..., conf.level = 0.95, na.rm = FALSE)

Arguments

x

data.frame

ColumnName

character name of measurment column

...

extra arguments passed to TInterval

conf.level

confidence level to draw interval

na.rm

logical, if TRUE remove NA values

Value

wrapped stat

See Also

TInterval, TIntervalS, TInterval.numeric, TInterval.data.frame

Examples


set.seed(2018)
d <- data.frame(x = rnorm(100) + 3.2)
TInterval(d, "x")



sigr documentation built on Aug. 20, 2023, 9:06 a.m.