Learn R Programming

spc4sts (version 0.6.3)

pexptailecdf: Predictions from an Exptailecdf Object

Description

Returns the values of the exptailecdf object at given observations.

Usage

pexptailecdf(Fx, y)

Arguments

Fx

the object of class exptailecdf, containing an ecdf with exponential tail approximation.

y

the given observations in the scalar/vector/matrix format.

Value

An object of the same type with y that stores the evaluations of the exptailecdf object at the given y.

References

Bui, A.T. and Apley., D.W. (2018a) "A Monitoring and Diagnostic Approach for Stochastic Textured Surfaces", Technometrics, 60, 1-13.

See Also

exptailecdf.object, exptailecdf

Examples

Run this code
# NOT RUN {
r <- rnorm(1000)
Fr <- exptailecdf(r)

pexptailecdf(Fr, max(r) + .1)
pexptailecdf(Fr, c(min(r) - .1, max(r) + .1))
pexptailecdf(Fr, matrix(c(.8, .9, 1, 1.1), 2, 2))
# }

Run the code above in your browser using DataLab