我使用 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 中生成它时,它会单独显示名称,而不是像下图那样重叠。
我试过使用 fig.height 和 gplot 热图,但都没有奏效。
有没有人建议如何使所有数据点在 yaxis 上可见?