Annotated Directory structure
MachineLearningIntro
├── static
│ ├── app
│ │ ├── components
│ │ │ ├── backbone # v1.1.2
| | | | └── backbone.js # Model-view-presenter single-page web application framework
│ │ │ ├── bootstrap # v3.2.0
| | | | ├── css # CSS framework for developing responsive, mobile first projects on the web
| | | | └── js # JS framework for developing responsive, mobile first projects on the web
│ │ | ├── d3 # v3.5.0
| | | | └── d3.js # JS library for manipulating documents based on data
│ │ | ├── jquery # v2.1.4
| | | | └── jquery.js # JS library to simplify client-side scripting of HTML and Backbone dependency
│ │ | ├── riveted # v0.6.0
| | | | └── riveted.js # Google Analytics plugin to measure active time on site
│ | | └── underscore # v1.8.3
| | | └── underscore.js # JS library with functional programming helpers and Backbone dependency
│ | └── global
| | └── style.css # Global page css styling
│ └── page
| ├── helpers.js # Encodings that map abstract data and events to visual representations
| ├── main.js # Main visual rendering code
| ├── rAF-polyfill.js # requestAnimationFrame polyfill
| └── style.css # Main page css styling
├── index.html # Index.html file
├── LICENSE
└── README.md
MachineLearningIntro
├── static
│ ├── app
│ │ ├── components
│ │ │ ├── backbone
| | | | └── backbone.js [ ]
│ │ │ ├── bootstrap
| | | | ├── css [ ]
| | | | └── js [ ]
│ │ | ├── d3
| | | | └── d3.js [ ]
│ │ | ├── jquery
| | | | └── jquery.js [ ]
│ │ | ├── riveted
| | | | └── riveted.js [ ]
│ | | └── underscore
| | | └── underscore.js [ ]
│ | └── global
| | └── style.css [ ]
│ └── page
| ├── helpers.js [ ]
| ├── main.js [ ]
| └── style.css [ ]
├── index.html [ ]
├── LICENSE
└── README.md