Learn R Programming

bivgeom (version 1.0)

rbivgeomRoy: Pseudo-random generation

Description

Generation of pseudo-random values from Roy's bivariate geometric model

Usage

rbivgeomRoy(n, theta1, theta2, theta3)

Arguments

n

a positive integer, corresponding to the sample size

theta1

paramater \(\theta_1\)

theta2

paramater \(\theta_2\)

theta3

paramater \(\theta_3\)

Value

A \(n\times 2\) numeric matrix containing the bivariate sample values

References

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.

See Also

dbivgeomRoy, FbivgeomRoy

Examples

Run this code
# NOT RUN {
theta1 <- 0.5
theta2 <- 0.7
theta3 <- 0.9
# random sample of size n=1000:
set.seed(12345)
n <- 1000
d <- rbivgeomRoy(n, theta1, theta2, theta3)
# joint frequency distribution:
table(d[,1],d[,2])
# }

Run the code above in your browser using DataLab