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.
# 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
)