Provides the list of currently supported sojourn distributions and the list of their parameters.

available_sojourn_dist()

Value

A data.frame with the following columns: distribution_type and parameters

Examples

available_sojourn_dist()
#> distribution_type parameters #> 1 nonparametric d #> 2 ksmoothed_nonparametric d, bw #> 3 gamma shape, scale #> 4 poisson shift, lambda #> 5 lnorm meanlog, sdlog #> 6 logarithmic shape #> 7 nbinom size, mu or prob, shift #> parameters_description #> 1 'd' is the non-parametric probability density #> 2 'd' is the non-parametric probability density, 'bw' is the smoothing bandwidth. If left empty, default 'bw' value of the 'density' function is users (see '?density' for details). #> 3 'shape' and 'scale' are the gamma distribution parameters (rate = 1/scale) #> 4 'lambda' is Poisson distribution parameter and 'shift' is an additional parameter allowing to shift the Poisson distribution. #> 5 'meanlog' and 'sdlog' are the log-normal distribution parameters (see ?rlnorm for details) #> 6 'shape' is the decay parameter of the logarithmic distribution #> 7 'size' and 'mu'/'prob' are the negative binomial distribution parameters. 'shift' is an additional parameter allowing to shift the distribution.