be_table() takes the parameters from be_extract_param() and a regulatory
framework and produces the final per-endpoint pass/fail table. It selects the
regulator-appropriate statistic (the model contrast for the expanding-limits
frameworks, intra-subject contrasts for the FDA family) and calls the
per-framework decision functions; it is the only place regulator decisions
are made.
Usage
be_table(
params,
regulator,
alpha = 0.1,
design = NA_character_,
model_type = NA_character_
)Arguments
- params
A data.frame of parameters from
be_extract_param()(with anendpointcolumn added per endpoint).- regulator
A regulator name or a
be_regulatorobject.- alpha
The significance level.
- design
The design label (character) for the
designcolumn.- model_type
The model type label for the
model_typecolumn.
Value
A data.frame with one row per endpoint and test formulation and the pass/fail decision columns.
See also
Other Bioequivalence:
be_assess(),
be_compare(),
be_dataset(),
be_design(),
be_expand_limits(),
be_extract_param(),
be_fit_model_single(),
be_fit_models(),
be_regulator(),
be_within_var()