在R中的某些点之间创建函数

时间:2018-10-22 15:04:52

标签: r function continuous-integration continuous

我有两个向量,例如xy,像这样:

x <- c(1,2,3,4,5,6,7,8,9,10)
y <- c(0.01,0.1,0.2,0.4,0.8,0.9,0.4,0.3,0.1,0.02)

我想以一种看起来像y=f(x)的方式创建一个连续函数plot(x,y , type='l'),即curve(f, min(x), max(x))看起来像plot(x,y , type='l')的样子,我可以计算出像integrate(f, min(x), max(x))这样的整数或其他连续计算。

0 个答案:

没有答案