Conversation
| M.plot(A3intervals1; z=:C) | ||
| # Broken from here | ||
| A3intervals2 = rand(X(10:1:15; sampling=Intervals(Start())), Y(1:3), Z(10:15; sampling=Intervals(Start()))) | ||
| M.plot(A3intervals2) |
There was a problem hiding this comment.
what's the expected output? It looks like A3intervals1 is a combination of Intervals and points, hence the recipe should be a combination of scatters and linesegments, which I couldn't find 😄 ? Does this means that for Intervals, Intervals, Intervals the output should be a voxel plot, namely voxel(matrix)[https://github.com/MakieOrg/Makie.jl/pull/3527] or meshscatter(3dPoints, color=matrix[:])? a cube of mini-cubes?
There was a problem hiding this comment.
oh... it's also slices of heatmaps? that would be more cumbersome. It will require a smart way of combining
heatmap(x,y,z; transformation = (:xy, value)
heatmap(x,y,z; transformation = (:xz,value)
heatmap(x,y,z; transformation = (:yz, :value)
ok...please clarify the expected output.
There was a problem hiding this comment.
Yeah the idea is two intervals combine to make a square.
So like slices of heat maps, or just all the polygons that would make the heatmap. Not sure how to do it best
c84a9c6 to
1e28c91
Compare
|
@lazarusA I rebased this against main youl need to scrap the branch you have I guess |
@lazarusA this works when you use
plot(A)with oneIntervalsdimensions, but I cant get it to work when there are two intervals and the pixels should be squares like in heatmap.Maybe you have an idea.