नहीं है fitdistr
में समारोह मास पैकेज या में कार्यों में से कुछ fitdistrplus पैकेज । यहाँ कुछ उदाहरण बाद के हैं।
require(fitdistrplus)
set.seed(1)
dat <- rnorm(50,0,1)
f1 <- fitdist(dat,"norm")
f2 <- fitdist(dat,"logis")
f3 <- fitdist(dat,"cauchy")
उदाहरण के लिए
> f1
Fitting of the distribution ' norm ' by maximum likelihood
Parameters:
estimate Std. Error
mean 0.1004483 0.11639515
sd 0.8230380 0.08230325
और आप के साथ भूखंडों को देख सकते हैं
plotdist(dat,"norm",para=list(mean=f1$estimate[1],sd=f1$estimate[2]))
plotdist(dat,"logis",para=list(location=f2$estimate[1],scale=f2$estimate[2]))
plotdist(dat,"cauchy",para=list(location=f3$estimate[1],scale=f3$estimate[2]))
इसलिए यह सामान्य वितरण के रूप में प्रशंसनीय है
लेकिन शायद एक रसद वितरण के रूप में (आपको पूंछ में उन्हें अलग करने के लिए एक बड़े नमूने की आवश्यकता होगी)
हालांकि qqplot के साथ और CDF को देखकर आप बता सकते हैं कि यह शायद कॉची वितरण नहीं है