如何在轴标签中制作平方根符号?

时间:2012-10-08 22:17:00

标签: r plotmath

如何使平方根符号在R?

中显示为天花板轴标签

1 个答案:

答案 0 :(得分:11)

使用expression(sqrt(x)),请参阅“{3}}(通过mnel评论中提到的?plotmath”获取R图中的数学注释。

plot(1:10,
     main='Example',
     ylab=expression(sqrt(x)))

产生

enter image description here