Skip to content

Instantly share code, notes, and snippets.

View csteed's full-sized avatar

Chad Steed csteed

View GitHub Profile
@csteed
csteed / README.md
Last active August 29, 2015 13:57 — forked from mbostock/.block

Test. A box-and-whisker plot uses simple glyphs that summarize a quantitative distribution with five standard statistics: the smallest value, lower quartile, median, upper quartile, and largest value. This summary approach allows the viewer to easily recognize differences between distributions. Data from the Michelson–Morley experiment. Implementation contributed by Jason Davies. This example periodically randomizes the values to demonstrate transitions.

@csteed
csteed / index.html
Created December 1, 2013 03:27 — forked from mbostock/.block
<!DOCTYPE html>
<meta charset="utf-8">
<style>
path {
stroke: #000;
fill-opacity: .8;
}
</style>
@csteed
csteed / README.md
Last active December 29, 2015 21:09 — forked from mbostock/.block
Parallel Coordinates

This parallel coordinates visualization of cars from the ‘70s and ‘80s demonstrates one of D3 2.5.0’s new interactive features: the brush component. By clicking and dragging along any axis, you can specify a filter for that dimension. The brush component is also used in the updated scatterplot matrix example.