Hi, 
I have a Data Set x and I want to check with a Kolmogorow-Smirnow-Test, if x 
comes from a Subbotin Distribution, whose density function is:

function(x,location,scale,tail) # Exponential power (=Subbotin)
{
  const<- 2*scale*tail^(1/tail) *gamma(1+1/tail)
  z<- (x-location)/scale
  exp(-1/tail*abs(z)^tail)/const
}

How can i do this? Thank you
--

______________________________________________
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.

Reply via email to