Assume:
- list of n xts objects in
.GlobalEnvwith the suffix ".raw" (e.g:ABC.raw) - have created a list of
.rawnames in alist(ie,rawfiles <- ls(pattern="*.raw",envir=.GlobalEnv))
Would like to:
looporlapplythrough rawfiles and subset a particular timeperiod in each iteration- for example, to write this as a single line would be:
new <- ABC.raw["T09:00/T10:00"]if I wanted to subsetABC.rawfrom 9am to 10am each day.
The problem is:
- Doesn't seem to be an easy way of passing
["Thh:mm/Thh:mm"]to a loop, apply or assign without causing errors.
Any ideas how to pass this?
In pidgeon code, I guess I'm looking for a working equivalent of:
for(i in 1:length(raw)){
raw[i]["T09:00/T10:00"]
}
Many thanks in advance for any assistance on this.