get_F_at_x {iclogcondist} | R Documentation |
Generic Function to compute F at X
Description
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
Usage
get_F_at_x(object, ...)
Arguments
object |
An object for which the method is defined. |
... |
Additional arguments passed to the method. |
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]