R ggplot

时间:2018-06-12 10:29:35

标签: r ggplot2 histogram

我需要帮助。 我在这里搜索过但没有得到正确的输出。

我试图在R中绘制这个,所以我可以使用GGplot在一个图中并排绘制3个文件。 我想要的输出(用excel绘制)是这个

desired histogram

我使用GGplot获得的是

ggplot output

我正在使用的R代码是

A1 <- read.table("A1.txt", header = T, sep = "\t")
library(ggplot2)
ggplot(A1, aes(x = count)) + geom_bar()

数据是一个制表符分隔的文件,如

length  count
26  344776
27  289439
18  673395
28  338146
19  710702
20  928326
21  3491352
22  2724981
23  699007
24  726121
25  472509

长度,因为它只是x轴上的标签,用于在y轴上绘制的计数。

1 个答案:

答案 0 :(得分:2)

这是你想要的吗?

ggplot(A1, aes(x = as.character(length), y=count)) + geom_bar(stat="identity")