Get parameter names for given model.

get_parnames(model_name)

Arguments

model_name

Model_name in the form of "meanfun_errdist".

Value

List containing model names, character vector of mean function parameters, error distribution parameters, and constant parameters.

Examples


## Get parameters for a "gaussian-zinb" model
get_parnames ("gaussian_zinb")
#> $model_name
#> [1] "gaussian_zinb"
#> 
#> $thetaM
#> [1] "H" "m" "s"
#> 
#> $thetaE
#> [1] "pi"  "phi"
#> 
#> $theta
#> [1] "H"   "m"   "s"   "pi"  "phi"
#>