Displaying 1 result from an estimated 1 matches for "regularts".
Did you mean:
regulars
2010 Nov 19
0
Ggplot and irregular timeseries
...e
ggplot generated outputs for comparison purposes can be found 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<...