I have a simple balloonplot using the ggpballoonplot
pacakge:
ggballoonplot(X, x = "cluster", y = "marker", size = "Relative.Expression",
fill = "Median.Intensity",
ggtheme = theme_classic())
I wanted to know if it was possible to add a dendrogram and organise the balloon plot based on that? I know you can do a similar thing with corrplot
as seen in : Dendrogram with Corrplot (R) but was struggling to apply it to theggballoonplot
function?