Hi there, 

I need to do the same thing as cumsum but with the variance and skewness. I
have tried to do a loop for like this: 
       var.value <- vector(mode = "numeric", length = length(daily))
        for (i in (1:length(daily))) { 
           var.value[i] <- var(daily[1:i])
        }

But because my dataset is so huge, I run out of memory.....


Any ideas?!?!

Much appreciate it!

--
View this message in context: 
http://r.789695.n4.nabble.com/cumVar-and-cumSkew-tp3816899p3816899.html
Sent from the R help mailing list archive at Nabble.com.

______________________________________________
R-help@r-project.org mailing list
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
and provide commented, minimal, self-contained, reproducible code.

Reply via email to