fma (version 2.3)

auto: Attributes of some US and Japanese automobiles

Description

Price, mileage, age and country of origin for 45 automobiles.

Usage

auto

Arguments

Format

This data frame contains the following columns:

Country

Country of manufacture

Mileage

Mileage per gallon

Price

Price of car at time of measurement

References

Consumer Reports, April 1990, pp.235-255.

Examples

Run this code
# NOT RUN {
plot(Price ~ Mileage, data=auto,pch=19,col=2)
points(auto$Mileage[auto$Country=="USA"],auto$Price[auto$Country=="USA"],pch=19,col=4)
legend(30,25000,legend=c("USA","Japan"),pch=19,col=c(4,2))
# }

Run the code above in your browser using DataCamp Workspace