参考自 153分钟
使用平滑曲线,沿着X轴从左向右的顺序依次连接,可以使用spline样条函数线。
x = 1:5 y = c(1,3,4,2.5,2) plot(x,y) sp = spline(x,y,n = 50) lines(sp)