dist_lists {disttree} | R Documentation |
The functions dist_gaussian
, dist_crch
, dist_exponential
, dist_weibull
, dist_gamma
and dist_poisson
generate a distribution family list with all the required elements to fit a distribution in distfit
.
Complete distribution family lists are provided by dist_list_normal
and dist_list_cens_normal
.
dist_gaussian() dist_crch(dist = c("gaussian", "logistic"), truncated = FALSE, type = c("left", "right", "interval"), censpoint = 0) dist_exponential() dist_weibull() dist_gamma() dist_poisson()
dist |
|
truncated |
|
type |
|
censpoint |
|
The functions dist_gaussian
, dist_crch
, dist_exponential
, dist_weibull
, dist_gamma
and dist_poisson
generate a distribution family list with all the required elements to fit a distribution in distfit
. These lists include a density function, a score function, a hessian function, starting values, link functions and inverse link functions.
Complete distribution family lists are provided by dist_list_normal
and dist_list_cens_normal
for the normal and censored normal distribution respectively.
These functions return a list with functions of the corresponding distribution family as required by distfit
.
## get the family list for a Gaussian distribution family dist_gaussian()