County-by-county results of year 2000 US presidential election in Florida
The florida
data frame has 67 rows and 13 columns.
Gives a county by county accounting of the US elections in the state of Florida.
data(florida)
This data frame contains the following columns:
Name of county
Votes for Gore
Votes for Bush
Votes for Buchanan
Votes for Nader
a numeric vector
a numeric vector
a numeric vector
a numeric vector
a numeric vector
a numeric vector
a numeric vector
Found in the excellent notes Using R for Data Analysis and Graphics by John Maindonald. (As of 2003 a book published by Cambridge University Press.)
data(florida) attach(florida) result.lm <- lm(BUCHANAN ~ BUSH) plot(BUSH,BUCHANAN) abline(result.lm) ## can you find Palm Beach and Miami Dade counties?
Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.