Last data update: 2014.03.03

R: Time Series Data Sets
TimeSeriesDataR Documentation

Time Series Data Sets

Description

Three data sets used in example files.

The data sets are:

LPP2005REC Swiss pension fund assets returns benchmark,
MSFT Daily Microsoft OHLC prices and volume,
USDCHF USD CHF intraday foreign exchange xchange rates.

Examples

## Plot LPP2005 Example Data Set -  
   data(LPP2005REC)
   plot(LPP2005REC, type = "l")
   
## Plot MSFT Example Data Set - 
   data(MSFT)
   plot(MSFT[, 1:4], type = "l")
   plot(MSFT[, 5], type = "h")
   
## Plot USDCHF Example Data Set - 
   # plot(USDCHF)

Results