surv.lognormal: Survival function for a log-normal distribution.

View source: R/lognormal.R

surv.lognormalR Documentation

Survival function for a log-normal distribution.

Description

Returns a function that computes S(t) = P(X > t) for the log-normal distribution.

Usage

## S3 method for class 'lognormal'
surv(x, ...)

Arguments

x

A lognormal object.

...

Additional arguments (not used).

Value

A function function(t, log.p = FALSE, ...) returning the survival probability (or log-survival probability) at t.

Examples

x <- lognormal(0, 1)
S <- surv(x)
S(1)
S(2)

algebraic.dist documentation built on Feb. 27, 2026, 5:06 p.m.