View source: R/iclogcondist_functions.R
get_F_at_x.iclogcondist | R Documentation |
Computes the value of the function F(x)
for a given object of class iclogcondist
.
## S3 method for class 'iclogcondist'
get_F_at_x(object, x = NA, log = FALSE, ...)
object |
An object of class |
x |
A numeric vector of values at which |
log |
Logical; if |
... |
Additional arguments (not currently used). |
A numeric vector of values, either F(x)
or log(F(x))
.
# 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)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.