Set section filter for a spec
set_spec_section_filter.RdFilters out rows belonging to specified sections. Use NA to also
filter unmatched rows (those that didn't match any section rule).
Examples
spec <- SummarySpec(
sections = section_rules(
"base" %in% tags ~ "Base Models",
TRUE ~ "Other"
)
) |>
set_spec_section_filter("Other")