数据集的插值

时间:2012-12-03 09:48:11

标签: r dataset interpolation

我正在开发一个linux内核模块,我想在其中评估电池供电水平。我在充电过程中测量了电池的电压。结果,我收到了the experimental dependence,例如:

10:28:15    7898
10:29:15    7902
10:30:15    7908
10:31:15    7913
10:32:15    7918
10:33:15    7921

enter image description here

现在我需要用二次多项式插值结果图。

如何使用R编程语言执行此操作?

1 个答案:

答案 0 :(得分:3)

使用lm使线性模型适合数据:

> x <- 0:9
> y <- 1+2*x+3*x^2
> fit <- lm( y ~ x + I(x^2) )
> fit

Call:
lm(formula = y ~ x + I(x^2))

Coefficients:
(Intercept)            x       I(x^2)  
          1            2            3  

但您应该重新考虑这些数据的二次模型。