Density, distribution function, quantile function and random generation for
the bridge distribution with parameter phi
. See Wang and Louis (2003).
dbridge(x, phi = 1/2, log = FALSE)pbridge(q, phi = 1/2, lower.tail = TRUE, log.p = FALSE)
qbridge(p, phi = 1/2, lower.tail = TRUE, log.p = FALSE)
rbridge(n, phi = 1/2)
dbridge
gives the density, pbridge
gives the
distribution function, qbridge
gives the quantile function, and
rbridge
generates random deviates.
The length of the result is determined by n
for rbridge
, and
is the maximum of the lengths of the numerical arguments for the other
functions.
The numerical arguments other than n
are recycled to the length of
the result. Only the first elements of the logical arguments are used.
vector of quantiles.
phi parameter. The phi must be between 0 and 1. A phi of 1/sqrt(1+3/pi^2) gives unit variance.
logical; if TRUE, probabilities p are given as log(p).
logical; if TRUE (default), probabilities are \(P[X \le x]\), otherwise, \(P[X > x]\).
vector of probabilities.
number of observations. If length(n) > 1
, the length is
taken to be the number required.
If phi
is omitted, the default
value 1/2
is assumed.
The Bridge distribution parameterized by
phi
has distribution function
$$F(q) = 1 - 1/(pi*phi) * (pi/2 - atan( (exp(phi*q) + cos(phi*pi)) / sin(phi*pi) ))$$
and density
$$f(x) = 1/(2*pi) * sin(phi*pi) / (cosh(phi*x) + cos(phi*pi)).$$
The mean is \(\mu\) and the variance is \(\pi^2 (\phi^{-2} - 1) / 3 \).
Wang, Z. and Louis, T.A. (2003) Matching conditional and marginal shapes in binary random intercept models using a bridge distribution function. Biometrika, 90(4), 765-775. <DOI:10.1093/biomet/90.4.765>
See also:
Swihart, B.J., Caffo, B.S., and Crainiceanu, C.M. (2013). A Unifying Framework for Marginalized Random-Intercept Models of Correlated Binary Outcomes. International Statistical Review, 82 (2), 275-295 1-22. <DOI: 10.1111/insr.12035>
Griswold, M.E., Swihart, B.J., Caffo, B.S and Zeger, S.L. (2013). Practical marginalized multilevel models. Stat, 2(1), 129-142. <DOI: 10.1002/sta4.22>
Heagerty, P.J. (1999). Marginally specified logistic-normal models for longitudinal binary data. Biometrics, 55(3), 688-698. <DOI: 10.1111/j.0006-341X.1999.00688.x>
Heagerty, P.J. and Zeger, S.L. (2000). Marginalized multilevel models and likelihood inference (with comments and a rejoinder by the authors). Stat. Sci., 15(1), 1-26. <DOI: 10.1214/ss/1009212671>
Distributions for other standard distributions.
## Confirm unit variance for phi = 1/sqrt(1+3/pi^2)
var(rbridge(1e5, phi = 1/sqrt(1+3/pi^2))) # approximately 1
Run the code above in your browser using DataLab