[FIX] OWDistributions: Fix binning of meta attributes #2068
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
File -> Select columns -> Distributions
Load Iris, move one of the (continuous) attributes to meta attributes and select it in the Scatter plot. Instead of that attribute, the scatter plot shows the class.
The first problem is that the attribute was selected incorrectly - as the first attribute in domain + metas. When the grouping attribute was an ordinary attribute and the shown attribute a meta, this resulted in showing the grouping attributes.
The second problem is that discretization classes do not discretize meta attributes.
Description of changes
Construct the table for discretization so that the attribute that has to be discretized always appears as a normal attribute.
Includes