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
@VesnaT, I don't think this is correct fix. I'd even dare putting assert X.ndim == 2 here. I think we should always safely assume that X is two-dimensional, where X.shape[1] equals len(data.domain.attributes).
The problem is probably somewhere in class Table, which - as far as I see for now - constructs a zero-dim array when selecting zero rows. The problem must be fixed there; unless we prevent zero-dim arrays, everything will crash.
@markotoplak, you're wrong. I didn't forget that; at the time of writing I haven't gone deep enough yet, and I thought this is just about X (as in data.X). I didn't yet know this X could also be our beautiful shape-shifting Y. :)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Issue
Fixes #6208 (comment)
Description of changes
Compute stats for an empty array / Table.
Includes