1

我一直在努力获得一个充满颜色渐变的小提琴图。我想要得到的应该是与此类似的(我使用图像编辑器编写的)。

这与我想要的相似

我已经围绕这个想法尝试了几个代码

data("diamonds")
library (ggplot)
ggplot(diamonds, aes(x=cut,y=price))+
geom_violin(aes(fill=price))+
scale_fill_gradient(low="red",high = "green")

这根本没有给我填充颜色。我意识到它可以使用geom_jitter或类似的东西来完成,但这不是我想要的。

这可以做到吗?

谢谢!

PS。我发现了一个类似的问题,但没有令人满意的答案

编辑2021 年 4 月 15 日:这个问题在这里得到了解决: How to assign a Color Scale based on Y-axis in ggplot

4

0 回答 0