View source: R/iclogcondist_functions.R
get_F_at_x | R Documentation |
Computes the value of the function F(x)
for a given object of class iclogcondist
.
This is a generic function to compute F(x)
for object class iclogcondist
.
For usage details, please refer to function get_F_at_x.iclogcondist
get_F_at_x(object, ...)
object |
An object for which the method is defined. |
... |
Additional arguments passed to the method. |
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.