小提琴图渐变填写ggplot2

时间:2017-01-12 18:36:30

标签: r plot ggplot2 gradient violin-plot

我一直在努力争取一个充满色彩渐变的小提琴情节。我想要得到的东西应该与此类似(我使用图像编辑器制作)。

This is similar to what I want

我已经尝试了几个关于这个想法的代码

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。我找到了一个类似的question没有令人满意的答案

0 个答案:

没有答案