get_F_at_x.iclogcondist {iclogcondist} | R Documentation |
Evaluate F(x) for Objects of Class 'iclogcondist'
Description
Computes the value of the function F(x)
for a given object of class iclogcondist
.
Usage
## S3 method for class 'iclogcondist'
get_F_at_x(object, x = NA, log = FALSE, ...)
Arguments
object |
An object of class |
x |
A numeric vector of values at which |
log |
Logical; if |
... |
Additional arguments (not currently used). |
Value
A numeric vector of values, either F(x)
or log(F(x))
.
Examples
# Example usage:
data(lgnm)
# Evaluate for LCMLE object
fit_LCMLE <- ic_LCMLE(lgnm)
get_F_at_x(fit_LCMLE)
# Evaluate for UMLE object
fit_UMLE <- ic_UMLE(lgnm)
x = seq(0.001, 6, length.out = 1000)
get_F_at_x(fit_UMLE, x = x)
[Package iclogcondist version 1.0.1 Index]