You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Motivation: coef(object) returns coefficients of a fitted object as a named vector, e.g.:
(Intercept) t I(t^2)
3.373459 1.909901 1.006140
If we eventually implement wrappers for linear regressions, coefficients should be returned as a list, because in general these have different units, e.g.:
Motivation:
coef(object)
returns coefficients of a fittedobject
as a named vector, e.g.:If we eventually implement wrappers for linear regressions, coefficients should be returned as a list, because in general these have different units, e.g.:
It would be better to set them as
mixed_units
and print the names, if available, withprint.mixed_units
. In this case, it should look like this:The text was updated successfully, but these errors were encountered: