FyxbivgeomRoy {bivgeom} | R Documentation |
Conditional distribution function of Y
given X=x
FyxbivgeomRoy(y, theta1, theta2, theta3, x)
y |
vector of observations from |
theta1 |
paramater |
theta2 |
paramater |
theta3 |
paramater |
x |
value of the conditioning variable |
The value of the conditional cumulative distribution function F_{Y|x}
in y
. Used in rbivgeomRoy
for conditional sampling
Alessandro Barbiero
Roy, D. (1993) Reliability measures in the discrete bivariate set-up and related characterization results for a bivariate geometric distribution, Journal of Multivariate Analysis 46(2), 362-373.
theta1 <- 0.5
theta2 <- 0.7
theta3 <- 0.9
# probability that Y<=3 given that X=2:
FyxbivgeomRoy(3, theta1, theta2, theta3, 2)
# the unconditional probability would be
pgeom(3, 1-theta2) # i.e. a geometric distribution with parameter 1-theta2