TimeSeriesData | R Documentation |
Three data sets used in example files.
The following datasets are available:
Daily Microsoft OHLC (Open-high-low-close) prices and volume from 2000-09-27 to 2001-09-27.
USD/CHF intraday foreign exchange rates.
Swiss pension fund assets returns benchmark from 2005-11-01 to 2007-04-11.
The datasets are objects from class "timeSeries"
.
No further information about the LPP2005REC
is available. The
meaning of the columns?
readSeries
,
timeSeries
## LPP2005 example data set
data(LPP2005REC)
plot(LPP2005REC, type = "l")
class(LPP2005REC)
dim(LPP2005REC)
head(LPP2005REC)
LPP2005REC[1:5, 2:4]
range(time(LPP2005REC))
summary(LPP2005REC)
## MSFT example data set
data(MSFT)
plot(MSFT[, 1:4], type = "l")
plot(MSFT[, 5], type = "h")
class(MSFT)
range(time(MSFT))
head(MSFT)
## Plot USDCHF example data set
data(USDCHF)
plot(USDCHF)
range(time(USDCHF))
head(USDCHF)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.