I am making an heatmap with "heatmaply" R package, but I have overlapping rownames (see red circled area). Any suggestion or tutorial about fixing this problem?
I am making an heatmap with "heatmaply" R package, but I have overlapping rownames (see red circled area). Any suggestion or tutorial about fixing this problem?
You can use the fontsize_row argument to set it to a number smaller than 10.
E.g.:
library("heatmaply")
heatmaply(mtcars) # default fontsize_row is 10
library("heatmaply")
heatmaply(mtcars, fontsize_row = 5)