├── LICENSE ├── Linear_Discriminant_Analysis.ipynb ├── README.md ├── data ├── sample-2d-circular.csv ├── sample-2d-simple.csv ├── sample-2d.csv ├── sample-3d-entwined.csv ├── sample-3d-simple.csv ├── sample-3d.csv ├── sample-4d-simple.csv ├── sample-4d.csv └── sample-high-variance.csv ├── index.html ├── lib ├── Tween.js ├── numbers.min.js ├── numeric-1.2.6.min.js ├── papaparse.min.js ├── threejs │ ├── OrbitControls.js │ ├── THREE.MeshLine.js │ └── three.js ├── two.min.js └── versor.js ├── media ├── circular_data.gif ├── drag_and_drop_2d.gif ├── equation_circular.gif └── lda_recompute.gif ├── src ├── LDA.js ├── MathLibrary.js ├── ThreePlotting.js └── main.js └── style.css /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmarShehata/lda-explorable/HEAD/LICENSE -------------------------------------------------------------------------------- /Linear_Discriminant_Analysis.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmarShehata/lda-explorable/HEAD/Linear_Discriminant_Analysis.ipynb -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmarShehata/lda-explorable/HEAD/README.md -------------------------------------------------------------------------------- /data/sample-2d-circular.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmarShehata/lda-explorable/HEAD/data/sample-2d-circular.csv -------------------------------------------------------------------------------- /data/sample-2d-simple.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmarShehata/lda-explorable/HEAD/data/sample-2d-simple.csv -------------------------------------------------------------------------------- /data/sample-2d.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmarShehata/lda-explorable/HEAD/data/sample-2d.csv -------------------------------------------------------------------------------- /data/sample-3d-entwined.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmarShehata/lda-explorable/HEAD/data/sample-3d-entwined.csv -------------------------------------------------------------------------------- /data/sample-3d-simple.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmarShehata/lda-explorable/HEAD/data/sample-3d-simple.csv -------------------------------------------------------------------------------- /data/sample-3d.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmarShehata/lda-explorable/HEAD/data/sample-3d.csv -------------------------------------------------------------------------------- /data/sample-4d-simple.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmarShehata/lda-explorable/HEAD/data/sample-4d-simple.csv -------------------------------------------------------------------------------- /data/sample-4d.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmarShehata/lda-explorable/HEAD/data/sample-4d.csv -------------------------------------------------------------------------------- /data/sample-high-variance.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmarShehata/lda-explorable/HEAD/data/sample-high-variance.csv -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmarShehata/lda-explorable/HEAD/index.html -------------------------------------------------------------------------------- /lib/Tween.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmarShehata/lda-explorable/HEAD/lib/Tween.js -------------------------------------------------------------------------------- /lib/numbers.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmarShehata/lda-explorable/HEAD/lib/numbers.min.js -------------------------------------------------------------------------------- /lib/numeric-1.2.6.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmarShehata/lda-explorable/HEAD/lib/numeric-1.2.6.min.js -------------------------------------------------------------------------------- /lib/papaparse.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmarShehata/lda-explorable/HEAD/lib/papaparse.min.js -------------------------------------------------------------------------------- /lib/threejs/OrbitControls.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmarShehata/lda-explorable/HEAD/lib/threejs/OrbitControls.js -------------------------------------------------------------------------------- /lib/threejs/THREE.MeshLine.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmarShehata/lda-explorable/HEAD/lib/threejs/THREE.MeshLine.js -------------------------------------------------------------------------------- /lib/threejs/three.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmarShehata/lda-explorable/HEAD/lib/threejs/three.js -------------------------------------------------------------------------------- /lib/two.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmarShehata/lda-explorable/HEAD/lib/two.min.js -------------------------------------------------------------------------------- /lib/versor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmarShehata/lda-explorable/HEAD/lib/versor.js -------------------------------------------------------------------------------- /media/circular_data.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmarShehata/lda-explorable/HEAD/media/circular_data.gif -------------------------------------------------------------------------------- /media/drag_and_drop_2d.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmarShehata/lda-explorable/HEAD/media/drag_and_drop_2d.gif -------------------------------------------------------------------------------- /media/equation_circular.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmarShehata/lda-explorable/HEAD/media/equation_circular.gif -------------------------------------------------------------------------------- /media/lda_recompute.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmarShehata/lda-explorable/HEAD/media/lda_recompute.gif -------------------------------------------------------------------------------- /src/LDA.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmarShehata/lda-explorable/HEAD/src/LDA.js -------------------------------------------------------------------------------- /src/MathLibrary.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmarShehata/lda-explorable/HEAD/src/MathLibrary.js -------------------------------------------------------------------------------- /src/ThreePlotting.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmarShehata/lda-explorable/HEAD/src/ThreePlotting.js -------------------------------------------------------------------------------- /src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmarShehata/lda-explorable/HEAD/src/main.js -------------------------------------------------------------------------------- /style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmarShehata/lda-explorable/HEAD/style.css --------------------------------------------------------------------------------