Package 'PlotBivInvGaus'

Title: Density Contour Plot for Bivariate Inverse Gaussian Distribution
Description: Create the density contour plot for bivariate inverse Gaussian distribution for given non negative random variables.
Authors: Kavita Mane [aut], Bhushan Saswade [aut, cre]
Maintainer: Bhushan Saswade <[email protected]>
License: GPL-2
Version: 0.1.0
Built: 2025-02-18 04:41:48 UTC
Source: https://github.com/cran/PlotBivInvGaus

Help Index


Density Contour Plot for Bivariate Inverse Gaussian Distribution

Description

Density Contour Plot for Bivariate Inverse Gaussian Distribution

Usage

PlotBivInvGaus(x, y, u1, u2, l1, l2, r, v)

Arguments

x

vector defining range of non negative variable x

y

vector defining range of non negative variable y

u1

mean value of variable x

u2

mean value of variable y

l1

shape parameter of variable x

l2

shape parameter of variable y

r

correlation coefficient of variable X and Y

v

correlation coefficient of bivariate normal distribution (Z1, Z2)

Value

Density contour plot for bivariate inverse Gaussian distribution

References

Continuous Bivariate Distributions Second Edition by N. Balakrishnan, Chin-Diew Lai

Examples

x=seq(1,10,0.2)
y=seq(1,10,0.2)
v=0.3
r=0.5
l1=4
l2=4
u1=3
u2=3
PlotBivInvGaus(x,y,u1,u2,l1,l2,r,v)