MLE_gamma {NPflow} | R Documentation |
MLE for Gamma distribution
Description
Maximum likelihood estimation of Gamma distributed observations distribution parameters
Usage
MLE_gamma(g)
Arguments
g |
a list of Gamma distributed observation. |
Examples
g_list <- list()
for(i in 1:1000){
g_list <- c(g_list, rgamma(1, shape=100, rate=5))
}
mle <- MLE_gamma(g_list)
mle
[Package NPflow version 0.13.5 Index]