我有一个可以使用以下方法绘制的时间序列数据:
plot(x$numbers, type="l", col="blue")
我喜欢得到第 95 个百分位并将第 95 个百分位添加到此图表中
x_percent<-quantile(x$numbers, 0.95)
如何将 x_percent 添加到现有的 x$numbers 图表中?
x$numbers<-c(1,2,3,8,10,30)
x$percent<-quantile(x$numbers, 0.95)
plot(x$numbers, type="l")
在这里,我喜欢将 x$percent 添加到图表中,基本上绘制一条垂直线,其值为第 95 个百分位值。安迪的想法?