coef.MLEce {MLEce} | R Documentation |
Getting estimated values of efficient closed-form estimators
Description
Getting estimated values of efficient closed-form estimators
Usage
## S3 method for class 'MLEce'
coef(object, digits = max(3, getOption("digits") - 3), ...)
Arguments
object |
an object of class |
digits |
a numeric number of significant digits. |
... |
not used, but exists because of the compatibility. |
Value
a numeric vector or a list, containing assigned distribution and estimated values, is given.
Examples
data_BiGam = rBiGam(100, c(1,4,5))
res_BiGam = MLEce(data_BiGam, "BiGam")
coef(res_BiGam)
data_BiWei = rBiWei(n=50, c(4,3,3,4,0.6))
est_BiWei <-MLEce(data_BiWei, "BiWei")
coef(est_BiWei)
data_Diri <- LaplacesDemon::rdirichlet(n=60, c(3,1,2,4))
est_Diri <- MLEce(data_Diri, "Dirichlet")
coef(est_Diri)
[Package MLEce version 2.1.0 Index]