Re: [R] a function to compute the cumulative distribution function (cdf) of the gamma

2007-10-08 Thread Ben Bolker



elodie gillain wrote:
> 
> Dear Forum,
> 
> I would need to write a function to calculate the cumulative distribution
> function (cdf) of the gamma random variable. I am allowed to use the
> following precoded functions: rgamma, pgamma, and dgamma. I am a little
> overwhelmed by this project,  I am wondering how I should start.  Should I
> sum dgamma (or pgamma) from 0 to x, in order to obtain the cdf at x?
> 
> 

  This is a little bit confusing since pgamma() *is* the cumulative
distribution function of a gamma random variable.  (Also, "allowed
to use" makes this sound a little like a homework problem ...)
If you really wanted to do things the hard, inefficient way, you
could use integrate() to numerically integrate (not sum) dgamma()
from 0 to x -- but why not use pgamma() ??

  Ben Bolker

-- 
View this message in context: 
http://www.nabble.com/a-function-to-compute-the-cumulative-distribution-function-%28cdf%29-of-the-gamma-tf4581664.html#a13095089
Sent from the R help mailing list archive at Nabble.com.

__
R-help@r-project.org mailing list
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
and provide commented, minimal, self-contained, reproducible code.


[R] a function to compute the cumulative distribution function (cdf) of the gamma

2007-10-06 Thread elodie gillain
Dear Forum,

I would need to write a function to calculate the cumulative distribution
function (cdf) of the gamma random variable. I am allowed to use the
following precoded functions: rgamma, pgamma, and dgamma. I am a little
overwhelmed by this project,  I am wondering how I should start.  Should I
sum dgamma (or pgamma) from 0 to x, in order to obtain the cdf at x?

Thanks in advance for your input.

[[alternative HTML version deleted]]

__
R-help@r-project.org mailing list
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
and provide commented, minimal, self-contained, reproducible code.