Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有兴趣为现有数据集之一生成以下图。但是,我找不到 R 中的哪些功能可以帮助我做到这一点。我尝试了 kohonen 包中的绘图功能,但没有生成此类绘图的选项。
ggplot2我发现最适合我大多数绘图需求的语法。在这种情况下,您需要geom_hexor stat_hexbin。
ggplot2
geom_hex
stat_hexbin
来自ggplot2 文档
d <- ggplot(diamonds, aes(carat, price)) d + stat_binhex()
根据评论,如果您不想分箱,我认为您仍然可以geom_hex使用stat='identity'。或者,你可以用geom_tile它来做这个,但是你不会有漂亮的六边形......
stat='identity'
geom_tile