在图上显示百分位数值

时间:2014-01-09 16:09:03

标签: r plot

把ex的值。 95%,在没有换行符的地块上打印,因此它将“95%”和“答案”混杂在一起。

mtext(capture.output(quantile(X, c(.95))))

..正是我试图在空图或边缘上绘图。

我尝试过bquote和其他一些东西,但似乎没有人能够解决这个问题!?

1 个答案:

答案 0 :(得分:0)

您在寻找paste吗?

mtext(paste(capture.output(quantile(X, c(.95))), collapse = "\n"))

一个例子:

X <- 1:10
frame()
mtext(paste(capture.output(quantile(X, c(.95))), collapse = "\n"))

enter image description here