Learn R Programming

lmomco (version 1.4.3)

is.ln3: Is a Distribution Parameter Object Typed as 3-Parameter Log-Normal

Description

The distribution parameter object returned by functions of this module such as by parln3 are typed by an attribute type. This function checks that type is ln3 for the 3-parameter log-Normal distribution.

Usage

is.ln3(para)

Arguments

para
A parameter list returned from parln3.

Value

  • TRUEIf the type attribute is ln3.
  • FALSEIf the type is not ln3.

See Also

parln3

Examples

Run this code
para <- vec2par(c(.9252, .1636, .7),type='ln3')
if(is.ln3(para)) {
  Q <- qualn3(0.5,para)
}

Run the code above in your browser using DataLab