[][src]Function r_stats::lognormal_quantile

pub fn lognormal_quantile(
    p: f64,
    mean_log: f64,
    sd_log: f64,
    lower_tail: bool,
    log_p: bool
) -> f64

Evaluate the quantile function of the log-normal distribution with parameters mean_log and sd_log at probability p.

If lower_tail is true, then p is the integral from -∞ to x, else it is the integral from x to . "Usual" behaviour corresponds to true.

If log_p is true, the natural logarithm of the value will be returned, with potentially higher numerical accuracy than calling .ln().