Displaying 20 results from an estimated 3000 matches similar to: "how to construct bivariate joint cumulative pdf from bivariate joint pdf"
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
2013 Apr 03
3
Generating a bivariate joint t distribution in R
Hi,
I conduct a panel data estimation and obtain estimators for two of the
coefficients beta1 and beta2. R tells me the mean and covariance of the
distribution of (beta1, beta2). Now I would like to find the distribution
of the quotient beta1/beta2, and one way to do it is to simulate via the
joint distribution (beta1, beta2), where both beta1 and beta2 follow t
distribution.
How could we
2004 Jul 30
0
P-value from the joint cumulative distribution of an n-dimensional order statistic
Hello,
I want to compute the P-value from the joint cumulative distribution of an n-dimensional
order statistic in R, using the formula found on
http://cmgm.stanford.edu/%7Ekimlab/multiplespecies/Supplement/methods_network.html
My data consists of three different techniques (G2D, POCUS and RANDOM), and each has
associated with it a number of rankings (integer between 0 and 1000), like for
2006 May 11
2
Maximum likelihood estimate of bivariate vonmises-weibull distribution
Hi,
I'm dealing with wind data and I'd like to model their distribution in
order to simulate data to fill-in missing values. Wind direction are
typically following a vonmises distribution and wind speeds follow a
weibull distribution. I'd like to build a joint distribution of
directions and speeds as a VonMises-Weibull bivariate distribution.
First is this a stupid question? I'm
2012 Dec 19
1
Theoretical confidence regions for any non-symmetric bivariate statistical distributions
Respected R Users,
I looking for help with generating theoretical confidence regions for any
of non-symmetric bivariate statistical distributions (bivariate Chi-squared
distribution<Wishart distribution>, bivariate F-distribution, or any of the
others). I want to to used it as a benchmark to compare a few strategies
constructing confidence regions for non-symmetric bivariate data.
There is
2007 May 08
0
Question on bivariate GEE fit
Hi,
I have a bivariate longitudinal dataset. As an example say,
i have the data frame with column names
var1 var2 Unit time trt
(trt represents the treatment)
Now suppose I want to fit a joint model of the form for the *i* th unit
var1jk = alpha1 + beta1*timejk + gamma1* trtjk + delta1* timejk:trtjk +
error1jk
var2 = alpha2 + beta2*timejk + gamma2* trtjk + delta2* timejk:trtjk +
2004 Jul 21
2
nonparametetric bivariate regression
Hi there,
Does R has built-in codes for nonpara. bivariate regression so that I can
estimate the joint distribution of two variables as a function of some
covariates? Thanks a lot.
---------------------------------------------------
Ximing Wu
Department of Economics
University of Guelph
Guelph, Ontario, Canada, N1G 2W1
Tel: (519) 842-4120, ext 53014
Fax: (519) 763-8497
email: xiwu at
2009 Dec 02
2
Joint density kde2d works improperly?
Dear all,
Please, look at the following code:
attach(geyser)
f1 <- kde2d(duration, waiting, n = 5)
a <- 0
for (i in 1:5){
for (j in 1:5){
a <- a + f1$z[i,j]
}
}
As far as I understood from Help kde2d returns matrix elements of which are
values of joint probability mass function Pr(X=x,Y=y) therefore, sum of its
elements should sum to 1.
Which is not the case from my check.
Where is
2012 Mar 23
1
Nonparametric bivariate distribution estimation and sampling
Dear all,
I have a bivariate dataset from a preliminary study. I want to do two things: (1) estimate the probability density of this bivariate distribution using some nonparametric method (kernel, spline etc); (2) sample a big dataset from this bivariate distribution for a simulation study.
Is there any good method or package I can use in R for my work? I don?t want parametric models like
2010 Jan 01
2
How to calculate density function of Bivariate binomial distribution
Am trying to do some study on bivariate binomial distribution. Anyone knows
if there is package in R that I can use to calculate the density function of
bivariate binomial distribution and to generate random samples of it.
Thanks,
--
View this message in context: http://n4.nabble.com/How-to-calculate-density-function-of-Bivariate-binomial-distribution-tp992002p992002.html
Sent from the R help
2011 Jun 14
2
How to generate bivariate exponential distribution?
Any one know is there any package or function to generate bivariate
exponential distribution? I gusee there should be three parameters, two rate
parameters and one correlation parameter. I just did not find any function
available on R. Any suggestion is appreciated.
--
View this message in context:
2010 Feb 10
3
Sampling from Bivariate Uniform Distribution
Hello all!!!
1) I am wondering is there a way to generate random numbers in R for Bivariate Uniform distribution?
2) Does R haveĀ built-in function for generating random numbers for any given bivariate distribution.
Any help would be greatly appreciated !!
Good day!
Haneef Anver
[[alternative HTML version deleted]]
2010 Apr 06
2
checking bivariate normality
x <- iris$Sepal.Length[1:50]/iris$Sepal.Width[1:50]
y <- iris$Petal.Length[1:50]/iris$Petal.Width[1:50]
I want to check whether (x,y) follows a bivariate normal distribution or
not, using density plot or scatter plot. Is it possible to plot a bivariate
density in R. I cant find any.
Arindam Fadikar
M.Stat
Indian Statistical Institute.
New Delhi, India
[[alternative HTML version
2008 Jan 23
2
from a normal bivariate distribution to the marginal one
Hello,
I'm quite new with R and so I would like to know if there is a command
to calculate an integral.
In particular I simulated a bivariate normal distribution using these
simple lines:
rbivnorm <- function(n, # sample size
mux, # expected value of x
muy, # expected value of Y
sigmax, # standard deviation of
2003 Sep 17
1
Bivariate Ripley K function
Hello,
I have used the univariate Ripley K function in R, but does anyone know if
there is a bivariate function built in? I have two species that I am dealing
with.
Also, how might I add error bars into the graphs (univariate and/or
bivariate)?
Thank you,
Karin Leiderman
k_leiderman at hotmail.com
Graduate Student/Research Assistant
Department of Mathematics
Univesity of New Mexico
2004 Nov 16
2
help on EM Algorithm for bivariate normal
Hi,
I woul like to know if it is possible to have a "R code" to generate EM
Algorithm for a normal bivariate mixture.
Best regard,
S.F.
2005 Dec 12
2
Bivariate Splines in R
Hi..,
is there a function in R to fit bivariate splines
?
I came across 'polymars' (POLSPLINE) and 'mars' (mda)
packages. Are these the one to use or are there other
specific commands?
Thanks.
Harsh
2006 Mar 29
2
bivariate case in Local Polynomials regression
Hi:
I am using the package "KernSmooth" to do the local polynomial regression. However, it seems the function "locpoly" can only deal with univariate covaraite. I wonder is there any kernel smoothing package in R can deal with bivariate covariates? I also checked the package "lcofit" in which function "lcofit" can indeed deal with bivariate case. The
2012 Jul 27
3
bivariate normal
Dear list members
I need a function that calculates the bivariate normal distribution for each observation. It is part of a likelihood function and I have 1000's of cases. As I understand it I cannot use packages like "mvtnorm" because it requres a covariance matrix of the same dimension as the number of observations. Basically what I need is a function that takes as arguments a
2002 Nov 12
1
Probabilities for bivariate normal distribution with adapt
Dear R-List:
I`m trying to calculate the probabilities for a bivariate normal
distribution while using the mvtnorm-package(dmvnorm) and the
adapt-package for multidimensional integration.
The problem is that I can`t specify the upper bound in the adapt-package
the way I need it because I don`t need a rectangular area. I want to
calculate the probability starting at the origin under the line y=x.