如何在R中添加这个条形图?我想在这个条形图中添加一些内容,但我不知道将它放在这个代码中的哪个位置。
barplot(sort(table(BartRider$DualInc), decreasing = TRUE))
答案 0 :(得分:1)
一种选择是使用main
的{{1}}参数并在那里指定你的标题,即
barplot()
另一种选择是在1>调用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