├── .gitignore ├── screenshot.png ├── README.md ├── docs ├── index.html └── styles.css ├── src ├── index.html ├── scss │ └── styles.scss └── js │ └── app.js ├── webpack.config.js ├── LICENSE └── package.json /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awkweb/chernoff-fish/HEAD/screenshot.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Chernoff Fish 2 | 3 | Data-driven fish with D3 & React because humans are really bad at understanding multi-dimensional data (and I wanted to learn React, Webpack, etc). Concept from [*Visualizing Financial Data*](http://www.wiley.com/WileyCDA/WileyTitle/productCd-111890785X.html) by Julie Rodriguez and Piotr Kaczmarek. 4 | 5 |  6 | 7 | ## Development 8 | 9 | ```shell 10 | > npm install 11 | > npm start 12 | ``` 13 | 14 | ## Build for GitHub pages 15 | ```shell 16 | > webpack 17 | ``` 18 | 19 | ## License 20 | 21 | Released under the MIT license. See LICENSE for details. -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | 5 |