I have a xts object containing a number of timeseries. The data looks like:
head(data)
date v1 v2 v3 v4 v5 v6
2014-07-31 NA 721 696 NA 487 469
2014-08-02 735 752 696 559 505 469
2014-08-04 1502 737 696 757 510 469
2014-08-06 799 722 697 559 487 469
...
"date" is a date variable and the other variables contain price developments. I would like to automatically plot all of the series (so v1, v2, v3), without manually inserting their names. This could be done using xtsExtra, but this package is no longer available for R3.1.0.
Is there a way to plot these time-series in one window using ggplot2? (incl. labeling and different colours)
Many thanks!