Runs SelectBoost directly on the flattened predictor matrix without the
FDA-specific grouping heuristics used by selectboost_fda(). This is useful
as a benchmark against the FDA-aware variant.
Arguments
- x
Any input accepted by
as_functional_matrix(), or anfda_designobject.- y
Response vector. Leave as
NULLwhenxis anfda_design.- mode
"fast"for a fixedc0grid or"auto"for the adaptive version.- selector
Base selector used inside SelectBoost. Choose from
"msgps","lasso","group_lasso","sparse_group_lasso", the backend-specific aliases"glmnet","grpreg","sgl", or provide a custom function.- selector_fun
Optional custom base selector. It must return a coefficient vector of length
p.- selector_args
Optional named list of arguments forwarded to the base selector.
- groups
Optional feature groups used by grouped base selectors such as
"grpreg". Defaults to block-level groups for list inputs.- family
Model family passed to built-in selectors.
- association
Optional absolute association matrix used directly by the raw SelectBoost grouping function.
- group_method
Functional grouping backend: threshold-based or community-based.
- ...
Additional arguments passed to
SelectBoost::fastboost()orSelectBoost::autoboost().