Displaying 1 result from an estimated 1 matches for "tp23481872p23483615".
2009 May 11
1
Plot bivariate joint pdf
For a homework question.
I was wondering if rcmdr has a function to plot a graph of a bivariate
function of X and Y.
I have a function with joint pdf
fX,Y(x,y) = x+y for 0<x<1 , 0<y<1
I've tried
> x <- seq(0,1,.001)
> y <- seq(0,1,.001)
> r = x+y
> plot(r)
but it seems to just add them together say .2+.2 .3+.3 not other
possibilities like
.9 + .1
Thanks