Computes the empirical cumulative distribution funciton (ecdf) of a given vector of observations, and approximates the tails of the ecdf with exponential curves.
exptailecdf(x, N = max(2, 0.002 * length(x)), m = min(N, 5))
the given vector of observations
the number of observations at each tail of the ecdf used for estimating the exponential curves.
the m
th observation from each extreme of the ecdf is the starting point to use the estimated exponential curves.
An object of class exptailecdf
. See exptailecdf.object
An ecdf has a probability of 0 or 1 for any new observation that lies beyond the range of the data of the cedf. This is a problem when using the ecdf as the reference cdf for the one-sample Anderson-Darling (AD) statistic because the computational formula of the AD statistic is infinite with such probabilities. The ecdf with exponential tail approximation replaces the tails of the ecdf with exponential curves, which extend to infinity, to solve this problem. The exponential curves are estimated using the observations at the tails of the ecdf. See Bui and Apley (2018a) for more details.
Bui, A.T. and Apley., D.W. (2018a) "A Monitoring and Diagnostic Approach for Stochastic Textured Surfaces", Technometrics, 60, 1-13.
# NOT RUN {
r <- rnorm(1000)
Fr <- exptailecdf(r)
# }
Run the code above in your browser using DataLab