绘制y轴数据R的百分位线

时间:2017-10-01 04:47:22

标签: r plot rstudio

我想在图表上绘制一条垂直线,以显示数据的第一个标准偏差从沿x轴绘制的orderSize数据结束的位置。例如,看起来大多数orderSize都在50以下。

enter image description here

ggplot(oilData, aes(orderSize,oilPrice)) + 
geom_point() + 
geom_smooth()+
geom_bar() + 
ggtitle("CL 11-17") + 
xlab("OrderSize") + 
ylab("Price") + 
theme(
plot.title = element_text(color="Black", size=14, face="bold"),
axis.title.x = element_text(color="black", size=11, face="plain"),
axis.title.y = element_text(color="black", size=11, face="plain")
)

0 个答案:

没有答案