viewof time_horizon = Inputs.range(
[1, 5],
{value: 3, step: 2, label: "Time Horizon:"}
)
viewof reference_group = Inputs.radio(
reference_groups_data, {label: "Reference Group"}, {value: 'thin'}
)
viewof stratified_by = Inputs.radio(
["probability_threshold", "ppcr"], {value: "probability_threshold", label: "Stratified By"}
)
viewof censored_assumption = Inputs.radio(
["excluded", "adjusted"], {value: "excluded", label: "Censored Assumption"}
)
viewof competing_assumption = Inputs.radio(
["excluded", "adjusted_as_negative", "adjusted_as_censored", "reals"], {value: "excluded", label: "Competing Assumption"}
)