March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early Bird pricing ends December 9th.
Register NowGet certified in Microsoft Fabric—for free! For a limited time, the Microsoft Fabric Community team will be offering free DP-600 exam vouchers. Prepare now
Hi,
I have a boxplot created using visual "Box and Whisker by MAQ Software".
Is it possible to add jittering to the boxplot? When I create a measure
Here's an example of one way to do it, with the Deneb visual.
{
"data": {"name": "dataset"},
"facet": {
"column": {"field": "Subcategory"}
},
"spec": {
"transform": [
{
"calculate": "random()-0.5",
"as": "jitter"
}
],
"layer": [
{
"mark": "point",
"encoding": {
"x": {
"field": "jitter",
"type": "quantitative",
"scale": {
"domain": [-10, 10]
},
"axis": null
},
"y": {
"field": "Total Qty",
"type": "quantitative"
}
}
},
{
"mark": {
"type": "boxplot",
"extent": "min-max"
},
"encoding": {
"y": {
"field": "Total Qty",
"type": "quantitative"
}
}
}
]
}
}
Pat
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early Bird pricing ends December 9th.
Check out the November 2024 Power BI update to learn about new features.
User | Count |
---|---|
112 | |
78 | |
75 | |
58 | |
57 |
User | Count |
---|---|
131 | |
105 | |
97 | |
70 | |
68 |