如何在ggplot热图中显示y轴上的所有数据点?

时间:2017-12-10 08:56:32

标签: r ggplot2 heatmap geom-text ggplotly

我使用ggplot

创建了一个热图
library(plyr)
library(scales)
guide_ind <- ddply(guide_tag[company == FALSE], .(tag), transform, rescale = rescale(count))


(p <- ggplotly(ggplot(guide_ind, aes(tag, username)) + 
                 geom_tile(aes(fill = rescale),colour = "white") + 
                 scale_fill_gradient(low = "white",high = "steelblue") +
                 theme(axis.text.x = element_text(angle= 90, hjust=1), legend.position= "bottom")   )
  )

我有大约700行用户名,我想确保所有用户名在文档中都可见,这样当我在markdown中生成它时,它将单独显示名称而不是像下图所示重叠。

enter image description here

我尝试过使用fig.height和gplot热图,但两者都没有用。

有没有人建议如何在y轴上显示所有数据点?

0 个答案:

没有答案