使用ggplot2创建包含预先汇总数据的条形图

时间:2012-04-08 23:38:58

标签: r ggplot2

我在名为 binFile

的文件中有以下数据
78 1
79 4
80 33
81 150
82 714
83 2663
84 8834
85 25679
86 63654
87 139731
88 265909
89 441686
90 639773
91 803736
92 879616
93 832181
94 682584
95 480228
96 290093
97 149299
98 65443
99 24487
100 7487
101 1835
102 402
103 59
104 10

如何从此数据创建简单的条形图,其中第一列沿x轴,并且条的高度应与第二列中的对应值成比例。

直到现在,我尝试了以下内容:

binData <- read.table("binFile")
costBars = ggplot(binData,aes(x=V1,y=V2))
finalPlot2 = costBars + geom_bar()
finalPlot2

但是这些命令会产生以下错误吗?

stat_bin: binwidth defaulted to range/30. Use 'binwidth = x' to adjust this.
Error in pmin(y, 0) : object 'y' not found

1 个答案:

答案 0 :(得分:7)

您需要的是stat="identity"

例如,这一行

ggplot(data=binfile, aes(x=V1, y=V2)) + geom_bar(stat="identity")

给了我这个情节

enter image description here

这就是你要追求的吗?