Learn R Programming

UsingR (version 2.0-7)

dowdata: The Dow Jones average from Jan 1999 to October 2000

Description

The dowdata data frame has 443 rows and 5 columns.

Usage

data(dowdata)

Arguments

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

Examples

Run this code
# NOT RUN {
data(dowdata)
the.close <- dowdata$Close
n <- length(the.close)
plot(log(the.close[2:n]/the.close[1:(n-1)]))
# }

Run the code above in your browser using DataLab