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
When using a continuous variable I get
ValueError: shape mismatch: value array of shape (228,77) could not be broadcast to indexing result of shape (228,7)
while running self.varm["LFC"][to_replace] = sub_dds.varm["LFC"] in _refit_without_outliers.
Overflows in irls_solver (similar to Issue #169). To be precise, I do not get these in previous settings.
ValueError: shape mismatch: value array of shape (228,77) could not be broadcast to indexing result of shape (228,7)
(while running self.varm["LFC"][to_replace] = sub_dds.varm["LFC"] in _refit_without_outliers)
The text was updated successfully, but these errors were encountered:
When using a continuous variable I get
ValueError: shape mismatch: value array of shape (228,77) could not be broadcast to indexing result of shape (228,7)
while running self.varm["LFC"][to_replace] = sub_dds.varm["LFC"] in _refit_without_outliers.
I also get overflow warnings from irls_solver.
design_factors=['Batch','Condition']
continuous_factors=None
Works fine
design_factors=['Batch', 'Age', 'Condition']
continuous_factors=None
Works fine (Refitting 29547 outliers, compared to 1567 in the previous setting, does this make sense?)
design_factors=['Batch', 'Age', 'Condition']
continuous_factors=['Age']
Overflows in irls_solver (similar to Issue #169). To be precise, I do not get these in previous settings.
ValueError: shape mismatch: value array of shape (228,77) could not be broadcast to indexing result of shape (228,7)
(while running self.varm["LFC"][to_replace] = sub_dds.varm["LFC"] in _refit_without_outliers)
The text was updated successfully, but these errors were encountered: