-
When plotting a time series with multiple instances of two (or more) data points at the same time the area plot doesn't draw a coherent shape. This helped me find a bug in my own stuff. So I'm fine after removing my duplicated data. This is an example |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 2 replies
-
Can you make the notebook public so we can see? If you’re stacking the data, you’ll need to make sure the x-values are aligned. Often this is done using the bin transform (or group transform) prior to stacking. |
Beta Was this translation helpful? Give feedback.
-
Oh. Thanks! I didn't understand what was going on. Thats clear.
… On Oct 9, 2024, at 6:41 PM, Mike Bostock ***@***.***> wrote:
It’s a consequence of the implicit stacking with areaY when you use the y channel. If you use the y2 channel instead (to set the topline of the area) then you can opt-out of the implicit stacking.
untitled.-.2024-10-09T184027.405.png (view on web)
Plot.plot({
marks: [
Plot.areaY(toPlot, { x: "xVal", y2: "yVal", opacity: 0.3 }),
Plot.line(toPlot, { x: "xVal", y: "yVal", tip: true })
]
})
—
Reply to this email directly, view it on GitHub, or unsubscribe.
You are receiving this because you authored the thread.Message ID: ***@***.***>
|
Beta Was this translation helpful? Give feedback.
It’s a consequence of the implicit stacking with areaY when you use the y channel. If you use the y2 channel instead (to set the topline of the area) then you can opt-out of the implicit stacking.