Skip to content

rhyp function from fBasics

3 messages · Erin Hodgess, David Scott, Sundar Dorai-Raj

#
Dear R People:

There is a function from the fBasics library to get the probability
and quantiles for the hyperbolic probability function.

Is there one that will estimate parms of the hyperbolic probability
function from a data set, please?

Thanks in advance!

Sincerely,
Erin Hodgess
mailto: hodgess at gator.uhd.edu
R Version 2.0.1 windows
#
On Sun, 21 Nov 2004, Erin Hodgess wrote:

            
Look at the package HyperbolicDist

David Scott
_________________________________________________________________
David Scott	Department of Statistics, Tamaki Campus
 		The University of Auckland, PB 92019
 		Auckland	NEW ZEALAND
Phone: +64 9 373 7599 ext 86830		Fax: +64 9 373 7000
Email:	d.scott at auckland.ac.nz


Graduate Officer, Department of Statistics
#
Erin Hodgess wrote:

            
Erin,

You can use MASS::fitdistr to do this, I believe.

library(fBasics)
library(MASS)
x <- rhyp(1000, alpha = 2, beta = 1, delta = 1)
fitdistr(x, dhyp, list(alpha = 1, beta = 0.5, delta = 0.5))

--sundar