如何用R中的3个标签创建这个图? (显示不同的阴影)

时间:2014-02-05 14:34:25

标签: r plot ggplot2 heatmap

我想知道如何在一个图中集成三个变量作为示例 附图。 如何实现“对数”用不同的阴影表示?

1 个答案:

答案 0 :(得分:1)

set.seed(42)
DF <- data.frame(x=runif(1e5), y=rpois(1e5,20))

library(ggplot2)
ggplot(DF, aes(x,y)) + stat_bin2d()

enter image description here