create_method_assess {epiparameter} | R Documentation |
Specify methodological aspects of distribution fitting
Description
A helper function when creating an <epiparameter>
object to
create a method assessment list with sensible defaults, type checking and
arguments to help remember which method assessments can be accepted in
the list.
Usage
create_method_assess(
censored = NA,
right_truncated = NA,
phase_bias_adjusted = NA
)
Arguments
censored |
A boolean |
right_truncated |
A boolean |
phase_bias_adjusted |
A boolean |
Details
Currently, the method assessment focuses on common methodological aspects of delay distributions (e.g. incubation period, serial interval, etc.), and does not currently take into account methodological aspects which may be important when fitting offspring distributions to data on disease (super)spreading.
Value
A named list with three elements
Examples
create_method_assess(
censored = FALSE,
right_truncated = FALSE,
phase_bias_adjusted = FALSE
)