I am moving the the dendrogram to the lefthand side by setting row_dend_left = TRUE, but the row labels disappear. Here is a reproducible example:
heatmaply(mtcars, k_col = 2, width = "100%", row_dend_left = TRUE) %>%
layout(xaxis= list(tickangle = 45), margin = list(b = 90))
heatmaply(mtcars, k_col = 2, width = "100%", row_dend_left = FALSE) %>%
layout(xaxis= list(tickangle = 45), margin = list(b = 90))
I have tried adding extra space using margin - list(r = 180) in case it was just getting cutoff, but nothing shows up still.
Any help would be appreciated.
I am moving the the dendrogram to the lefthand side by setting
row_dend_left = TRUE, but the row labels disappear. Here is a reproducible example:I have tried adding extra space using
margin - list(r = 180)in case it was just getting cutoff, but nothing shows up still.Any help would be appreciated.