Skip to content

Instantly share code, notes, and snippets.

View csteed's full-sized avatar

Chad Steed csteed

View GitHub Profile
@csteed
csteed / LICENSE.txt
Last active September 22, 2017 13:29
Multiple Pulse Time Series Visualization (v1)
MIT License
Copyright (c) 2017 Chad Steed
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
@csteed
csteed / LICENSE.txt
Last active August 8, 2017 02:10
Multiple Segmented Time Series Visualizations of Sensor Data
MIT License
Copyright (c) 2017 Chad Steed
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
@csteed
csteed / LICENSE.txt
Last active August 3, 2017 17:11
Segmented Temporal Visualization 1
MIT License
Copyright (c) 2017 Chad Steed
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
@csteed
csteed / LICENSE.txt
Last active June 15, 2017 18:05
Timeline Summary Variation with Steps and Brushings
MIT License
Copyright (c) 2017 Chad Steed
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
@csteed
csteed / LICENSE.txt
Last active March 16, 2017 17:35
Summary Timeline Vis Design Variation 3
MIT License
Copyright (c) 2017 Chad Steed
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
@csteed
csteed / LICENSE.txt
Last active March 16, 2017 17:22
Summary Timeline Vis Design Variation 2
MIT License
Copyright (c) 2017 Chad Steed
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
@csteed
csteed / LICENSE.txt
Last active March 16, 2017 17:23
Summary Timeline Vis Design Variation 1
MIT License
Copyright (c) 2017 Chad Steed
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
@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.