-4
我該如何在R的這個barplot中添加一個標題?我想給這個barplot添加一個標題,但我不知道該把代碼放在哪裏。我如何在R中添加一個標籤?
barplot(sort(table(BartRider$DualInc), decreasing = TRUE))
我該如何在R的這個barplot中添加一個標題?我想給這個barplot添加一個標題,但我不知道該把代碼放在哪裏。我如何在R中添加一個標籤?
barplot(sort(table(BartRider$DualInc), decreasing = TRUE))
一種選擇是使用的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")
我們可以使用main
參數barplot
barplot(sort(table(BartRider$DualInc), decreasing = TRUE), main = "Bar plot XYZ")
使用'main'選項 – akrun