
Extract coefficients from a psvr_rmspe model
coef.psvr_rmspe.RdExtract coefficients from a psvr_rmspe model
Usage
# S3 method for class 'psvr_rmspe'
coef(object, ...)Value
A named list with components:
alphaDual variables / Lagrange multipliers (length N).
bBias term.
support_dataTraining input matrix (all N observations).
Three components, against five for the MAPE classes (coef.psvr_mape()):
LS-SVR has no alpha_star and no pruned beta, and they are not
materialised as NULL. So names(coef(fit)) depends on the model family,
which is a decision rather than an oversight – each class is
family-specific, and inventing empty slots to make the two agree would add
structure with nothing to inherit it from. $alpha_star and $beta yield
NULL on both, so every accessor still agrees.