ggplot小提琴情节,按组指定不同的颜色?

时间:2018-06-01 14:19:56

标签: r ggplot2 violin-plot

我有一个9列的矩阵,我想用ggplot2创建一个小提琴图。我想为三列组提供不同的颜色,基本上增加"灰度"的顺序。我怎么能这样做?

我尝试在选项" fill ="上输入颜色列表。但它不起作用。请参阅下面的示例。目前,它表示" gray80",但我希望能够为每个小提琴图指定颜色,以便能够为3组指定颜色。

library(ggplot2)
dat <- matrix(rnorm(100*9),ncol=9)

# Violin plots for columns
mat <- reshape2::melt(data.frame(dat), id.vars = NULL)
pp <- ggplot(mat, aes(x = variable, y = value)) + geom_violin(scale="width",adjust = 1,width = 0.5,fill = "gray80")
pp

1 个答案:

答案 0 :(得分:2)

我们可以为您的数据添加一个名为variable_grouping的新列,然后在fill中指定aes

mat <- reshape2::melt(data.frame(dat), id.vars = NULL)

mat$variable_grouping <- ifelse(mat$variable %in% c('X1', 'X2', 'X3'), 'g1',
                                   ifelse(mat$variable %in% c('X4','X5','X6'), 
                                         'g2', 'g3'))

ggplot(mat, aes(x = variable, y = value, fill = variable_grouping)) + 
    geom_violin(scale="width",adjust = 1,width = 0.5)

enter image description here

您可以使用ifelse语句控制分组。 scale_fill_manual可用于指定用于填充小提琴的不同颜色。