Additional fixes to code and documentation to silence CRAN check notes for R devel.
Added the boys7482 dataset.
Fix knockoff filters to coerce grouped design matrices to numeric and supply the response to knockoff::create.fixed(), preventing failures when smooth proxies carried non-numeric classes or the design needed augmentation, and reuse any augmented design/response returned from create.fixed() to avoid downstream dimension mismatches.
SelectBoost.gamlss 0.2.0
Highlights
Grouped selection for all parameters (μ, σ, ν, τ) with engine = "grpreg" (group lasso/MCP/SCAD) and engine = "sgl" (sparse group lasso), including factors, splines (pb()/cs()), and interactions treated as single groups.
Per-parameter engines: engine, engine_sigma, engine_nu, engine_tau can be mixed (stepwise / glmnet / grpreg / sgl).
Glmnet support (lasso/ridge/elastic-net) extended beyond μ via working-response proxies for σ/ν/τ.
Glmnet selectors now accept glmnet_family (gaussian/binomial/poisson) and handle factor predictors via model-matrix expansion.
Tuning framework: tune_sb_gamlss() with stability or deviance metrics (K-fold), progress bars, and a complexity penalty.
Fast deviance paths for common families (auto-used in deviance CV): NO, PO, LOGNO, GA, IG, LO, LOGITNO, GEOM, BE, NBI, NBII, BI, and native shortcuts via gamlss.dist for many others (e.g., LOGLOG, DEL, ZAGA, ZIP/ZIP2, ZAIG, ZALG, ZIBI/ZIBB, PARETO, SEP1/SEP2, ZIPF/ZIPFmu, BCT, BCPE, SICHEL, GLG, BETA4, RS, WEI, GIG), with graceful fallbacks.
Fast deviance dynamically calls gamlss.dist::d<family>() when available, broadening zero-inflated/hurdle coverage without manual whitelists.