I have a data with 236 observations. After plotting the histogram, I found that
it looks like non-central t distribution. I would like to get MLE for mu and
df.
I found an example to find MLE for gamma distribution from "fitting
distributions with R":
library(stats4) ## loading package stats4
ll<-function(lambda,alfa) {n<-200
x<-x.gam
-n*alfa*log(lambda)+n*log(gamma(alfa))-(alfa-
1)*sum(log(x))+lambda*sum(x)} ## -log-likelihood function
est<-mle(minuslog=ll, start=list(lambda=2,alfa=1))
Is anyone how how to write down -log-likelihood function for noncentral t
distribution?
Thanks a lot!!
Kate
[[alternative HTML version deleted]]
______________________________________________
[email protected] 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.