我需要在R中我的盒子图的图例中写下数学符号,但我不知道如何写它。
这是我的代码:
boxplot(postive[,7],negative[,7], col=c("red", "green"), names=c("Positive Coefficient","Negative Coefficient"), main="",cex.axis=1.5,cex.lab=1.5,ylab="Rank" ,outline=FALSE)
legend(0.80,95000, box.col="white",cex=1.5, c("MWW P-value = 1.4 * 10^-16"))
基本上,我想写1.4 * 10^-16
看起来像文学中的正常数学符号,但我无法弄清楚如何去做。有人可以帮我弄这个吗 ?
答案 0 :(得分:0)
您可以使用表达式。
boxplot(postive[,7],negative[,7], col=c("red", "green"), names=c("Positive Coefficient","Negative Coefficient"), main="",cex.axis=1.5,cex.lab=1.5,ylab="Rank" ,outline=FALSE)
legend(0.80,95000, box.col="white",cex=1.5, c(expression(paste("MWW P-value = 1.4 * ", 10^-16))))