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
It appears that Plug Values are not standardized even when standardize=True is set which I think should be considered a bug - it makes it really hard to impute, e.g., median since the user would first have to standardize the frame and then calculate the median value from that without knowing if the standardization yielded the same values since we do it internally and I don't think we show the values anywhere).
Obviously, Petal.Width == 0 is an outlier and as such it should influence the GLM a lot but since there is no standardization of plug values it gets interpreted as already standardized value and does not contribute to the prediction at all (multiplication of β by zero).
The text was updated successfully, but these errors were encountered:
It appears that Plug Values are not standardized even when standardize=True is set which I think should be considered a bug - it makes it really hard to impute, e.g., median since the user would first have to standardize the frame and then calculate the median value from that without knowing if the standardization yielded the same values since we do it internally and I don't think we show the values anywhere).
Steps to reproduce
Obviously,
Petal.Width == 0
is an outlier and as such it should influence the GLM a lot but since there is no standardization of plug values it gets interpreted as already standardized value and does not contribute to the prediction at all (multiplication of β by zero).The text was updated successfully, but these errors were encountered: