Learn R Programming

ssdtools (version 0.3.7)

burrIII2: Burr Type III Two-Parameter Distribution

Description

Probability density, cumulative distribution, inverse cumulative distribution, random sample and starting values functions.

Usage

dburrIII2(x, locationlog = 0, scalelog = 1, log = FALSE)

pburrIII2(q, locationlog = 0, scalelog = 1, lower.tail = TRUE, log.p = FALSE)

qburrIII2(p, locationlog = 0, scalelog = 1, lower.tail = TRUE, log.p = FALSE)

rburrIII2(n, locationlog = 0, scalelog = 1)

sburrIII2(x)

Arguments

x

A numeric vector of values.

locationlog

location on log scale parameter.

scalelog

scale on log scale parameter.

log

logical; if TRUE, probabilities p are given as log(p).

q

vector of quantiles.

lower.tail

logical; if TRUE (default), probabilities are P[X <= x],otherwise, P[X > x].

log.p

logical; if TRUE, probabilities p are given as log(p).

p

vector of probabilities.

n

number of observations.

Value

A numeric vector.

Details

The burrIII2 distribution has been deprecated for the identical llogis distribution.

See Also

llogis()

Examples

Run this code
# NOT RUN {
x <- seq(0.01, 5, by = 0.01)
plot(x, dburrIII2(x), type = "l")
# }

Run the code above in your browser using DataLab