ggplot2中的水平条形图

时间:2012-06-07 23:25:18

标签: r ggplot2

我正在ggplot2做一个水平点图(?),这让我考虑尝试创建一个水平条形图。但是,我发现能够做到这一点有一些限制。

这是我的数据:

df <- data.frame(Seller=c("Ad","Rt","Ra","Mo","Ao","Do"), 
                Avg_Cost=c(5.30,3.72,2.91,2.64,1.17,1.10), Num=c(6:1))
df
str(df)

最初,我使用以下代码生成了一个点图:

require(ggplot2)
ggplot(df, aes(x=Avg_Cost, y=reorder(Seller,Num))) + 
    geom_point(colour="black",fill="lightgreen") + 
    opts(title="Avg Cost") +
    ylab("Region") + xlab("") + ylab("") + xlim(c(0,7)) +
    opts(plot.title = theme_text(face = "bold", size=15)) +
    opts(axis.text.y = theme_text(family = "sans", face = "bold", size = 12)) +
    opts(axis.text.x = theme_text(family = "sans", face = "bold", size = 12))

但是,我现在正在尝试创建一个横向条形图并发现我无法这样做。我已经尝试了coord_flip(),但也没用。

ggplot(df, aes(x=Avg_Cost, y=reorder(Seller,Num))) + 
    geom_bar(colour="black",fill="lightgreen") + 
    opts(title="Avg Cost") +
    ylab("Region") + xlab("") + ylab("") + xlim(c(0,7)) +
    opts(plot.title = theme_text(face = "bold", size=15)) +
    opts(axis.text.y = theme_text(family = "sans", face = "bold", size = 12)) +
    opts(axis.text.x = theme_text(family = "sans", face = "bold", size = 12)) 

任何人都可以提供一些有关如何在ggplot2中生成水平条形图的帮助吗?

2 个答案:

答案 0 :(得分:107)

ggplot(df, aes(x=reorder(Seller, Num), y=Avg_Cost)) +
  geom_bar(stat='identity') +
  coord_flip()

没有stat='identity' ggplot希望将您的数据汇总到计数中。

答案 1 :(得分:0)

ggplot(df, aes(x=reorder(Seller, Num), y=Avg_Cost)) +
  geom_col()

这可能是另一种选择