Learn R Programming

UsingR (version 2.0-7)

coins: The coins in my change bin

Description

The coins in author's change bin with year and value.

Usage

data(coins)

Arguments

Format

A data frame with 371 observations on the following 2 variables.

year

Year of coin

value

Value of coin: quarter, dime, nickel, or penny

Examples

Run this code
# NOT RUN {
data(coins)
years = cut(coins$year,seq(1920,2010,by=10),include.lowest=TRUE,
  labels = paste(192:200,"*",sep=""))
table(years)
# }

Run the code above in your browser using DataLab