如何在R中添加条形图?

时间:2017-02-01 05:46:37

标签: r

如何在R中添加这个条形图?我想在这个条形图中添加一些内容,但我不知道将它放在这个代码中的哪个位置。

barplot(sort(table(BartRider$DualInc), decreasing = TRUE))

2 个答案:

答案 0 :(得分:1)

一种选择是使用main的{​​{1}}参数并在那里指定你的标题,即

barplot()

另一种选择是在调用barplot(sort(table(BartRider$DualInc), decreasing=TRUE), main="Your title goes here") 之后使用title()函数

barplot()

答案 1 :(得分:0)

我们可以在title(main="Your title goes here", sub="sub-title", xlab="x-axis label", ylab="y-axis label")

中使用main参数
barplot