We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
null
{ "$schema": "https://vega.github.io/schema/vega-lite/v5.json", "data": { "values": [ {"C": "A", "X": 1, "Y": 0.7}, {"C": "A", "X": 1.5, "Y": 0.7}, {"C": "A", "X": null, "Y": 0.7}, {"C": "B", "X": 1, "Y": 1.7}, {"C": "B", "X": 1.5, "Y": 1.7}, {"C": "B", "X": null, "Y": 1.7}, {"C": "C", "X": 1, "Y": 2.7}, {"C": "C", "X": 1.5, "Y": 2.7}, {"C": "C", "X": null, "Y": 2.7} ] }, "mark": "boxplot", "encoding": { "x": {"field": "X", "type": "quantitative"}, "y": {"field": "Y", "type": "quantitative"} } }
Suggestion: The null box should be filtered out as when the box with null "Y" are filtered out:
{ "$schema": "https://vega.github.io/schema/vega-lite/v5.json", "data": { "values": [ {"C": "A", "X": 1, "Y": 0.7}, {"C": "A", "X": 1.5, "Y": 0.7}, {"C": "A", "X": 2, "Y": null}, {"C": "B", "X": 1, "Y": 1.7}, {"C": "B", "X": 1.5, "Y": 1.7}, {"C": "B", "X": 2, "Y": null}, {"C": "C", "X": 1, "Y": 2.7}, {"C": "C", "X": 1.5, "Y": 2.7}, {"C": "C", "X": 2, "Y": null} ] }, "mark": "boxplot", "encoding": { "x": {"field": "X", "type": "quantitative"}, "y": {"field": "Y", "type": "quantitative"} } }
The text was updated successfully, but these errors were encountered:
Yeah we should make boxplot respect mark.invalid
mark.invalid
filter
Sorry, something went wrong.
fix(#8327): Boxplot set null quantitative to 0 (#8409)
62bee7e
* add example * Take markDef.invalid into boxplot's markdef. * chore: update schema [CI] * update doc * refactor * chore: update examples [CI] Co-authored-by: GitHub Actions Bot <vega-actions-bot@users.noreply.github.com>
fix(vega#8327): Boxplot set null quantitative to 0 (vega#8409)
9977a86
Successfully merging a pull request may close this issue.
Suggestion:
The null box should be filtered out as when the box with null "Y" are filtered out:
The text was updated successfully, but these errors were encountered: