使用ggplot2在R上分组条形图

时间:2016-08-21 07:44:28

标签: r ggplot2 geom-bar

如何使用此数据使用ggplot2在R上创建分组条形图?

Person Cats Dogs

Mr. A   3   1

Mr. B   4   2

因此,它显示了显示每个人拥有的宠物数量,使用此布局Bar chart of pets

我有一个包含此数据的文本文件,并使用read.delim来读取R上的文件。

我使用过此代码,但它不会生成我正在寻找的条形图。

ggplot(data=pets, aes(x=Person, y=Cats, fill=Dogs)) + geom_bar(stat="identity", position=position_dodge())

我是R的新手,任何帮助都会受到赞赏。

提前致谢。

1 个答案:

答案 0 :(得分:6)

要为分组条形图准备数据,请使用melt()

reshape2功能

予。加载所需的包

    library(reshape2)
    library(ggplot2)

II。创建数据框df

    df <- data.frame(Person = c("Mr.A","Mr.B"), Cats = c(3,4), Dogs = c(1,2))
    df
    #   Person Cats Dogs
    # 1   Mr.A    3    1
    # 2   Mr.B    4    2

III。使用melt函数

熔化数据
    data.m <- melt(df, id.vars='Person')
    data.m
    #   Person variable value
    # 1   Mr.A     Cats     3
    # 2   Mr.B     Cats     4
    # 3   Mr.A     Dogs     1
    3 4   Mr.B     Dogs     2

IV。按Person

分组的条形图
   ggplot(data.m, aes(Person, value)) + geom_bar(aes(fill = variable), 
   width = 0.4, position = position_dodge(width=0.5), stat="identity") +  
   theme(legend.position="top", legend.title = 
   element_blank(),axis.title.x=element_blank(), 
   axis.title.y=element_blank())

传奇在顶部,已删除图例标题,删除了轴标题,调整了条形宽度和条形之间的空格。

enter image description here