├── .gitignore ├── README.md ├── _config.yml ├── cs229.png ├── index.html ├── mit6006.jpg ├── prob ├── central_limit_theorem.ipynb ├── poisson_paradigm.ipynb ├── prob_concepts.ipynb ├── prob_dist_discrete.ipynb └── rv.png ├── stats110.jpg └── test ├── readme.md ├── test_notebook.ipynb └── test_notebook2.ipynb /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dingran/quant-notes/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dingran/quant-notes/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dingran/quant-notes/HEAD/_config.yml -------------------------------------------------------------------------------- /cs229.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dingran/quant-notes/HEAD/cs229.png -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | hello world 2 | -------------------------------------------------------------------------------- /mit6006.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dingran/quant-notes/HEAD/mit6006.jpg -------------------------------------------------------------------------------- /prob/central_limit_theorem.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dingran/quant-notes/HEAD/prob/central_limit_theorem.ipynb -------------------------------------------------------------------------------- /prob/poisson_paradigm.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dingran/quant-notes/HEAD/prob/poisson_paradigm.ipynb -------------------------------------------------------------------------------- /prob/prob_concepts.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dingran/quant-notes/HEAD/prob/prob_concepts.ipynb -------------------------------------------------------------------------------- /prob/prob_dist_discrete.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dingran/quant-notes/HEAD/prob/prob_dist_discrete.ipynb -------------------------------------------------------------------------------- /prob/rv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dingran/quant-notes/HEAD/prob/rv.png -------------------------------------------------------------------------------- /stats110.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dingran/quant-notes/HEAD/stats110.jpg -------------------------------------------------------------------------------- /test/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dingran/quant-notes/HEAD/test/readme.md -------------------------------------------------------------------------------- /test/test_notebook.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dingran/quant-notes/HEAD/test/test_notebook.ipynb -------------------------------------------------------------------------------- /test/test_notebook2.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dingran/quant-notes/HEAD/test/test_notebook2.ipynb --------------------------------------------------------------------------------