-
Notifications
You must be signed in to change notification settings - Fork 0
treeheatmap alternative #16
Copy link
Copy link
Open
Description
Description
I was tinkering with implementing some tree variations that include heatmaps/bars and opted to start with the easiest way I could think about: plotting a tree in one axis and the heatmap/bar in other axis and linking the y axes. This works in principle, but the tree is "off-by-one".
Could we opt for moving the tree one unit up (start at coordinate (0,1)) or add an option for this?
Example:
Code:
begin
fig = Figure(size=(1000, 500))
ax1 = Axis(fig[1, 1])
ax2 = Axis(fig[1, 2])
linkyaxes!(ax1, ax2)
treeplot!(ax1, tree)
heatmap!(ax2, rand(100, 5))
fig
end
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels
