This is an alpha version of a plugin to create interactive statemaps.
mystatemap = statemap()
.x("state")
.y("share")
.facet("description")
.colors(colorbrewer.Greens[5])
d3.select("#statebin")
.classed("statebin", true)
.datum(x.data)
.call(mystatemap)