search for: start_h

Displaying 1 result from an estimated 1 matches for "start_h".

Did you mean: start_
2016 Apr 06
1
Extracting windows from time series
...de at one time --> List_Hiatus <- window(Puls,1,start = c(23), end = c(34)) > List_Hiatus [1] 1.125813 1.143880 1.123572 1.139369 1.134410 1.137944 1.139320 1.055780 1.026300 1.042695 1.007323 0.971577 attr(,"tsp") [1] 23 34 1 Tried but failed with the following approaches: Start_H <- as.numeric(Hiatus[,1:1]) End_H <- as.numeric(Start_H + 10) List_Hiatus <- window(Puls,1,start = "Start_H", end = "End_H") OR : List_Hiatus <- window(Puls,1,start = c(23,24), end = c(33,34)) # where c could of course be expanded Or apply(Puls,2,window(start=c...