Skip to contents

Summary function for hmde_model_template object

Usage

# S3 method for class 'hmde_model_template'
summary(object, ...)

Arguments

object

hmde_model_template output from hmde_model

...

other parameters used for print

Examples

# basic usage of summary
hmde_model("constant_single_ind") |> summary()
#> [1] "Model: constant_single_ind"
#> [1] "Input data template:"
#> $n_obs
#> NULL
#> 
#> $y_obs
#> NULL
#> 
#> $obs_index
#> NULL
#> 
#> $time
#> NULL
#> 
#> $prior_pars_ind_beta
#> [1] 0 2
#> 
#> $prior_pars_global_error_sigma
#> [1] 0 2
#> 
#> $model
#> [1] "constant_single_ind"
#>