dowdata {UsingR} | R Documentation |
The Dow Jones average from Jan 1999 to October 2000
Description
The dowdata
data frame has 443 rows and 5 columns.
Usage
data(dowdata)
Format
This data frame contains the following columns:
- Open
a numeric vector
- High
a numeric vector
- Date
a numeric vector
- Low
a numeric vector
- Close
a numeric vector
Source
this data comes from the site http://www.forecasts.org/
Examples
data(dowdata)
the.close <- dowdata$Close
n <- length(the.close)
plot(log(the.close[2:n]/the.close[1:(n-1)]))
[Package UsingR version 2.0-7 Index]