如何在基本图形绘图中向轴标签添加美元符号?

时间:2012-07-26 17:25:00

标签: r plot label

我在R中的散点图中绘制了一些数字,并希望在数字中添加美元符号。我该怎么做?

x <- = c(100,200,300,400,500)
boxplot(x)

1 个答案:

答案 0 :(得分:13)

快速谷歌搜索显示您需要在labels中指定axis参数。然后,您可以使用sprintf来控制格式:

boxplot(x, yaxt="n")
axis(2, at=axTicks(2), labels=sprintf("$%s", axTicks(2)))

enter image description here


要旋转标签,请使用参数las

boxplot(x, yaxt="n")
axis(2, at=axTicks(2), labels=sprintf("$%s", axTicks(2)), las=1)

enter image description here