block by timelyportfolio e9ea7af871cc11e0f43f

interactive d3.js parallel coordinates of finch data

Full Screen

I thought it would be interesting to produce an interactive parcoords version of the parallel coordinates chart in this post Looking After Datasets by Antony Unwin on the Revolution Analytics blog.

example

live example

code

# devtools::install_github("timelyportfolio/parcoords")
# install.packages("dynRB") # for the finch data
data("finch",package="dynRB")
parcoords
  finch,
  color=list(colorBy="Species",colorScale=htmlwidgets::JS("d3.scale.category10()")),
  brushMode="1d-multi",
  brushPredicate="or",
  rownames=F
)

gist

gist e9ea7af871cc11e0f43f