search for: irregularts

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

Did you mean: irregulars
2010 Nov 19
0
Ggplot and irregular timeseries
...und here (http://img269.imageshack.us/img269/121/ggplotweekends.png) where the upper image is for the regular timeseries and the bottom one is for the irregular one. Datasets for both the charts are (http://img521.imageshack.us/img521/6729/regularts.png) and (http://img517.imageshack.us/img517/8651/irregularts.png) correspondingly. The R code used to generate them is dates<-seq(ISOdate(2010,11,1), by = "day", length.out = 19) rets<-xts(rlnorm(19),order.by=dates) # the following line drops weekends from the timeseries rets<-rets[!weekdays(index(rets))%in%c('Saturday','Sund...