如何在R中为同一个X轴值绘制多个列

时间:2015-04-23 17:12:47

标签: r plot ggplot2

我需要绘制三个值,为X轴的每个值制作三个条形。我的数据是: My dataframe DF

在X轴中必须是标记为" m"的列。并为每个" m"价值我需要绘制通讯员" x"," y"和" z"值。

我想使用ggplot2,我需要这样的东西:

Goal

1 个答案:

答案 0 :(得分:6)

我创建了自己的数据集来演示如何操作:

数据:

x <- runif(12,1,1.5)
y <- runif(12,1,1.5)
z <- runif(12,1,1.5)
m <- letters[1:12]
df <- data.frame(x,y,z,m)

解决方案:

#first of all you need to melt your data.frame
library(reshape2)
#when you melt essentially you create only one column with the value
#and one column with the variable i.e. your x,y,z 
df <- melt(df, id.vars='m')

#ggplot it. x axis will be m, y will be the value and fill will be
#essentially your x,y,z
library(ggplot2)
ggplot(df, aes(x=m, y=value, fill=variable)) + geom_bar(stat='identity')

输出:

enter image description here

如果您想要将条形图放在另一个旁边,则需要在dodge指定geom_bar位置,即:

ggplot(df, aes(x=m, y=value, fill=variable)) + 
       geom_bar(stat='identity', position='dodge')

enter image description here