1
假設下列數據:線性內插通過組中的R
Date V1 V2
1 1996-01-04 0.04383562 days 0.1203920
2 1996-01-04 0.12054795 days 0.1094760
..............
3 1996-02-01 0.04383562 days 0.1081815
4 1996-02-01 0.12054795 days 0.1092450
..............
5 1996-03-01 0.04109589 days 0.1553875
6 1996-03-01 0.13687215 days 0.1469690
對於每個組的日期(我區分它們由爲便於點),我想要做一個簡單的線性內插:用於V1=0.08
我會得到什麼V2
。
我已經試過: 第一最合乎邏輯的方法來使用approx
:
IV<-data %>% group_by(Date) %>% approx(V1,V2,xout=0.08)
而是我得到這個錯誤:
Error in approx(., V1, V2, xout = 0.08) :
invalid interpolation method
In addition: Warning message:
In if (is.na(method)) stop("invalid interpolation method") :
the condition has length > 1 and only the first element will be used
然後我想:
Results<-unsplit(lapply(split(data,data$Date),function(x){m<-lm(V2~V1,x)
cbind(x,predict(m,0.08))}),data$Date)
一個錯誤:
Error in model.frame.default(formula = x[, 3] ~ x[, 2], data = x, drop.unused.levels = TRUE) :
invalid type (list) for variable 'x[, 3]'
我也試過dplyr
包沒有結果:
IV<-data %>% group_by(Date) %>% predict(lm(V2~V1,data=data,0.08)
這給了錯誤:
Error in UseMethod("predict") :
no applicable method for 'predict' applied to an object of class "c('grouped_df', 'tbl_df', 'tbl', 'data.frame')"
謝謝。
很抱歉這麼晚纔回復,但大約不能很好地工作(返回NA)時,我推斷,是正確的? 它適用於插值部分。 –