R底面积图

时间:2018-12-09 18:21:57

标签: r plot

是否可以在基本R中创建如下所示的面积图?也就是说,没有ggplot2,plotly等。

enter image description here

1 个答案:

答案 0 :(得分:1)

是的,只需使用polygon填写曲线下方。这是一个简单的例子。

x = seq(0,5.5*pi, 0.03)
y = 1 + sin(x)

plot(x,y, type="l")
Px = c(x, x[length(x)], 0)
Py = c(y, 0, 0)
polygon(Px, Py, col="lightblue")

Area under curve