2017-02-01 58 views
-4

我該如何在R的這個barplot中添加一個標題?我想給這個barplot添加一個標題,但我不知道該把代碼放在哪裏。我如何在R中添加一個標籤?

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

使用'main'選項 – akrun

回答

1

一種選擇是使用的barplot()main參數,並有指定的標題,即

barplot(sort(table(BartRider$DualInc), decreasing=TRUE), 
     main="Your title goes here") 

另一種選擇是使用title()功能您的來電barplot()

title(main="Your title goes here", sub="sub-title", 
     xlab="x-axis label", ylab="y-axis label") 
0

我們可以使用main參數barplot

barplot(sort(table(BartRider$DualInc), decreasing = TRUE), main = "Bar plot XYZ") 
相關問題