R:如何用一个数值填充geom_hex并对其进行热缩放?

vq8itlhq  于 2022-12-20  发布在  其他
关注(0)|答案(1)|浏览(99)

我想知道如何不根据计数来缩放geom_hex,而是通过变量和热缩放它?我在实际模型中也存在过拟合,想知道如何消除它?下面是一个示例:

'''
  ggplot(data = diamonds)+
  geom_hex(mapping = aes(x = x, y = price, fill = depth, bins = 
  25))+
  scale_fill_continuous(type = "viridis")
 '''

谢谢!

bxgwgixi

bxgwgixi1#

我想这就可以了,假设你想根据depth的平均值给六边形上色...

ggplot(diamonds, aes(x = x, y = price, z = depth)) +
  stat_summary_hex(fun = mean, bins = 25) +
  scale_fill_continuous(type = "viridis")

相关问题