MLE_gamma: MLE for Gamma distribution

Description Usage Arguments Examples

View source: R/MLE_gamma.R

Description

Maximum likelihood estimation of Gamma distributed observations distribution parameters

Usage

1

Arguments

g

a list of Gamma distributed observation.

Examples

1
2
3
4
5
6
7
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

NPflow documentation built on Feb. 6, 2020, 5:15 p.m.