get_F_at_x: Generic Function to compute F at X

View source: R/iclogcondist_functions.R

get_F_at_xR 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)

iclogcondist documentation built on April 4, 2025, 5:18 a.m.