我检查了我的参考资料,在我看来,要使用 x 和 y 拟合数据集,许多教程需要先绘制 x 和 y,然后绘制拟合线。正常程序如下:
## Calculate the fitted line
smoothingSpline = smooth.spline(tree_number[2:100], jaccard[1:99], spar=0.35)
plot(tree_number[2:100],jaccard[1:99]) #plot the data points
lines(smoothingSpline) # add the fitted spline line.
但是,我不想绘制tree_number和jaccard,而是只想在图中绘制拟合的样条线,我该怎么办?