Compute the value of
tolIntNormK(n, df = n - 1, coverage = 0.95, cov.type = "content",
ti.type = "two-sided", conf.level = 0.95, method = "exact",
rel.tol = 1e-07, abs.tol = rel.tol)
a positive integer greater than 2 indicating the sample size upon which the tolerance interval is based.
the degrees of freedom associated with the tolerance interval. The default is
df=n-1
.
a scalar between 0 and 1 indicating the desired coverage of the tolerance interval.
The default value is coverage=0.95
.
character string specifying the coverage type for the tolerance interval.
The possible values are "content"
("expectation"
(tolIntNorm
for more information on the difference between
character string indicating what kind of tolerance interval to compute.
The possible values are "two-sided"
(the default), "lower"
, and
"upper"
.
a scalar between 0 and 1 indicating the confidence level associated with the tolerance
interval. The default value is conf.level=0.95
.
for the case of a two-sided tolerance interval, a character string specifying the method for
constructing the tolerance interval. This argument is ignored if ti.type="lower"
or
ti.type="upper"
. The possible values are
"exact"
(the default) and "wald.wolfowitz"
(the Wald-Wolfowitz approximation).
See the DETAILS section for more information.
in the case when ti.type="two-sided"
and method="exact"
, the argument
rel.tol
is passed to the function integrate
. The default value is
rel.tol=1e-07
.
in the case when ti.type="two-sided"
and method="exact"
, the argument
abs.tol
is passed to the function integrate
. The default value is the
value of rel.tol
.
The value of
A tolerance interval for some population is an interval on the real line constructed so as to
contain
There are two kinds of tolerance intervals (Guttman, 1970):
A
A
Note: A
For a normal distribution, the form of a two-sided
Similarly, the form of a one-sided lower tolerance interval is:
The Derivation of
One-Sided Case
When ti.type="upper"
or ti.type="lower"
, the constant
Two-Sided Case
When ti.type="two-sided"
and method="exact"
, the exact formula for
the constant
When ti.type="two-sided"
and method="wald.wolfowitz"
, the approximate formula
due to Wald and Wolfowitz (1946) for the constant
The Derivation of
As stated above, a size =
prob =
predIntNormK
for information on
how to derive
Berthouex, P.M., and L.C. Brown. (2002). Statistics for Environmental Engineers. Lewis Publishers, Boca Raton.
Draper, N., and H. Smith. (1998). Applied Regression Analysis. Third Edition. John Wiley and Sons, New York.
Eberhardt, K.R., R.W. Mee, and C.P. Reeve. (1989). Computing Factors for Exact Two-Sided Tolerance Limits for a Normal Distribution. Communications in Statistics, Part B-Simulation and Computation 18, 397-413.
Ellison, B.E. (1964). On Two-Sided Tolerance Intervals for a Normal Distribution. Annals of Mathematical Statistics 35, 762-772.
Fujino, T. (1989). Exact Two-Sided Tolerance Limits for a Normal Distribution. Japanese Journal of Applied Statistics 18, 29-36.
Gibbons, R.D., D.K. Bhaumik, and S. Aryal. (2009). Statistical Methods for Groundwater Monitoring, Second Edition. John Wiley & Sons, Hoboken.
Gilbert, R.O. (1987). Statistical Methods for Environmental Pollution Monitoring. Van Nostrand Reinhold, New York.
Guttman, I. (1970). Statistical Tolerance Regions: Classical and Bayesian. Hafner Publishing Co., Darien, CT.
Hahn, G.J. (1970b). Statistical Intervals for a Normal Population, Part I: Tables, Examples and Applications. Journal of Quality Technology 2(3), 115-125.
Hahn, G.J. (1970c). Statistical Intervals for a Normal Population, Part II: Formulas, Assumptions, Some Derivations. Journal of Quality Technology 2(4), 195-206.
Hahn, G.J., and W.Q. Meeker. (1991). Statistical Intervals: A Guide for Practitioners. John Wiley and Sons, New York.
Jilek, M. (1988). Statisticke Tolerancni Meze. SNTL, Praha.
Krishnamoorthy K., and T. Mathew. (2009). Statistical Tolerance Regions: Theory, Applications, and Computation. John Wiley and Sons, Hoboken.
Janiga, I., and R. Miklos. (2001). Statistical Tolerance Intervals for a Normal Distribution. Measurement Science Review 11, 29-32.
Millard, S.P., and N.K. Neerchal. (2001). Environmental Statistics with S-PLUS. CRC Press, Boca Raton.
Odeh, R.E. (1978). Tables of Two-Sided Tolerance Factors for a Normal Distribution. Communications in Statistics, Part B-Simulation and Computation 7, 183-201.
Odeh, R.E., and D.B. Owen. (1980). Tables for Normal Tolerance Limits, Sampling Plans, and Screening. Marcel Dekker, New York.
Owen, D.B. (1962). Handbook of Statistical Tables. Addison-Wesley, Reading, MA.
Singh, A., R. Maichle, and N. Armbya. (2010a). ProUCL Version 4.1.00 User Guide (Draft). EPA/600/R-07/041, May 2010. Office of Research and Development, U.S. Environmental Protection Agency, Washington, D.C.
Singh, A., N. Armbya, and A. Singh. (2010b). ProUCL Version 4.1.00 Technical Guide (Draft). EPA/600/R-07/041, May 2010. Office of Research and Development, U.S. Environmental Protection Agency, Washington, D.C.
USEPA. (2009). Statistical Analysis of Groundwater Monitoring Data at RCRA Facilities, Unified Guidance. EPA 530/R-09-007, March 2009. Office of Resource Conservation and Recovery Program Implementation and Information Division. U.S. Environmental Protection Agency, Washington, D.C.
USEPA. (2010). Errata Sheet - March 2009 Unified Guidance. EPA 530/R-09-007a, August 9, 2010. Office of Resource Conservation and Recovery, Program Information and Implementation Division. U.S. Environmental Protection Agency, Washington, D.C.
Wald, A., and J. Wolfowitz. (1946). Tolerance Limits for a Normal Distribution. Annals of Mathematical Statistics 17, 208-215.
tolIntNorm
, predIntNorm
, Normal,
estimate.object
, enorm
, eqnorm
,
Tolerance Intervals, Prediction Intervals,
Estimating Distribution Parameters,
Estimating Distribution Quantiles.
# NOT RUN {
# Compute the value of K for a two-sided 95% beta-content
# tolerance interval with associated confidence level 95%
# given a sample size of n=20.
#----------
# Exact method
tolIntNormK(n = 20)
#[1] 2.760346
#----------
# Approximate method due to Wald and Wolfowitz (1946)
tolIntNormK(n = 20, method = "wald")
# [1] 2.751789
#--------------------------------------------------------------------
# Compute the value of K for a one-sided upper tolerance limit
# with 99% coverage and associated confidence level 90%
# given a samle size of n=20.
tolIntNormK(n = 20, ti.type = "upper", coverage = 0.99,
conf.level = 0.9)
#[1] 3.051543
#--------------------------------------------------------------------
# Example 17-3 of USEPA (2009, p. 17-17) shows how to construct a
# beta-content upper tolerance limit with 95% coverage and 95%
# confidence using chrysene data and assuming a lognormal
# distribution. The sample size is n = 8 observations from
# the two compliance wells. Here we will compute the
# multiplier for the log-transformed data.
tolIntNormK(n = 8, ti.type = "upper")
#[1] 3.187294
# }
Run the code above in your browser using DataLab