更多新手问题...我试图理解为什么rollapply将我所有的列都转换为字符串。假设我有这个:
> df <- data.frame(col1=c(1,2,3,4),
col2=c("a","b","c","d"),
col3=c("!","@","#","$"),
stringsAsFactors = F))
> v <- zoo(df, toupper(df$col2))
> v
col1 col2 col3
A 1 a !
B 2 b @
C 3 c #
D 4 d $
然后我运行rollapply:
> rollapply(v, 2, by.column = F, function(x) {
+ sum(x[,"col1"])
+ })
Error in sum(x[, "col1"]) : invalid 'type' (character) of argument
为什么col1现在是字符?以及如何解决这个问题,以便在每个窗口中都能看到原始的动物园对象的一部分?
答案 0 :(得分:0)
根据SO上其他posts的一些读物,滚动了我自己的rollapply函数。这只会将索引返回到数据中(即Zoo对象):
rollapply.list <- function(data, width, FUN) {
len <- NROW(data)
add <- rep(0:(len-width),each=width)
lst <- rep(1:(width),len-width+1)
seq.list <- split(lst+add, add)
lapply(seq.list, FUN)
}
,然后将索引应用于原始数据,例如:
rollapply.list(data=v, width=2, FUN=function(x) {
slice <- v[x] #slice out indexes from the original zoo object
...
}