View source: R/colpositive.mle.R
Column-wise MLE of continuous univariate distributions defined on the positive line | R Documentation |
Column-wise MLE of continuous univariate distributions defined on the positive line.
colpositive.mle(x, distr = "gamma", tol = 1e-07, maxiters = 100, parallel = FALSE)
x |
A matrix with positive valued data (zeros are not allowed). |
distr |
The distribution to fit. "gamma" stands for the gamma distribution, "chisq" for the |
tol |
The tolerance level up to which the maximisation stops; set to 1e-07 by default. |
maxiters |
The maximum number of iterations the Newton-Raphson will perform for the Weibull distribution. |
parallel |
Do you want to calculations to take place in parallel? The default value is FALSE. This is only for the Weibull distribution. |
For each column, the same distribution is fitted and its parameter and log-likelihood are computed.
A matrix with two, three or five (for the colnormlog.mle) columns. The first one or the first two contain the parameter(s) of the distribution and the other columns contain the log-likelihood values.
Michail Tsagris, Sofia Piperaki and Rafail Vargiakakis.
R implementation and documentation: Michail Tsagris mtsagris@uoc.gr, Sofia Piperaki sofiapip23@gmail.com and Rafail Vargiakakis rafailvargiakakis@gmail.com.
Kalimuthu Krishnamoorthy, Meesook Lee and Wang Xiao (2015). Likelihood ratio tests for comparing several gamma distributions. Environmetrics, 26(8): 571–583.
N.L. Johnson, S. Kotz and N. Balakrishnan (1994). Continuous Univariate Distributions, Volume 1 (2nd Edition).
N.L. Johnson, S. Kotz a nd N. Balakrishnan (1970). Distributions in statistics: continuous univariate distributions, Volume 2.
Tsagris M., Beneki C. and Hassani H. (2014). On the folded normal distribution. Mathematics, 2(1): 12–28.
Sharma V. K., Singh S. K., Singh U. and Agiwal V. (2015). The inverse Lindley distribution: a stress-strength reliability model with application to head and neck cancer data. Journal of Industrial and Production Engineering, 32(3): 162–173.
You can also check the relevant wikipedia pages for these distributions.
disc.mle, real.mle, prop.mle
x <- rgamma(100, 3, 4)
positive.mle(x, distr = "gamma")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.