Learn R Programming

eechidna (version 0.1)

hexDat: Electorate hexagon data in a tidy form

Description

Electorate hexagon data in a tidy form

Usage

hexDat

Arguments

Format

A data frame

References

Thomas Lumley

See Also

Thomas Lumley

Examples

Run this code
data(hexDat)
library(plotly)
p <- ggplot(hexDat, aes(xcent, ycent, text = Electorate)) + 
  geom_hex(stat = "identity") + 
  lims(x=c(-80, 8), y=c(-40, 50))
ggplotly(p, tooltip = "text")

Run the code above in your browser using DataLab