├── .gitignore ├── Data-Analytics ├── Adult census data.ipynb ├── MDLP_CIP_BLOG.ipynb ├── PCA_Pitfalls.ipynb ├── README.md └── Sentiment analysis of weather related tweets.ipynb ├── LICENSE ├── Numerical-Experimentation ├── AutoEncoder_for_AdsDataset.ipynb ├── Monte Carlo Methods to solve ODEs.ipynb ├── README.md ├── Series of N equals in coin tosses.ipynb ├── SuperConducting_Qubits.ipynb ├── The Monty Hall Problem.ipynb ├── The Two Envelope Paradox.ipynb └── t-SNE and the KL Divergence.ipynb ├── README.md └── styles ├── custom.css └── matplotlibrc /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jotterbach/Data-Exploration-and-Numerical-Experimentation/HEAD/.gitignore -------------------------------------------------------------------------------- /Data-Analytics/Adult census data.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jotterbach/Data-Exploration-and-Numerical-Experimentation/HEAD/Data-Analytics/Adult census data.ipynb -------------------------------------------------------------------------------- /Data-Analytics/MDLP_CIP_BLOG.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jotterbach/Data-Exploration-and-Numerical-Experimentation/HEAD/Data-Analytics/MDLP_CIP_BLOG.ipynb -------------------------------------------------------------------------------- /Data-Analytics/PCA_Pitfalls.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jotterbach/Data-Exploration-and-Numerical-Experimentation/HEAD/Data-Analytics/PCA_Pitfalls.ipynb -------------------------------------------------------------------------------- /Data-Analytics/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jotterbach/Data-Exploration-and-Numerical-Experimentation/HEAD/Data-Analytics/README.md -------------------------------------------------------------------------------- /Data-Analytics/Sentiment analysis of weather related tweets.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jotterbach/Data-Exploration-and-Numerical-Experimentation/HEAD/Data-Analytics/Sentiment analysis of weather related tweets.ipynb -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jotterbach/Data-Exploration-and-Numerical-Experimentation/HEAD/LICENSE -------------------------------------------------------------------------------- /Numerical-Experimentation/AutoEncoder_for_AdsDataset.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jotterbach/Data-Exploration-and-Numerical-Experimentation/HEAD/Numerical-Experimentation/AutoEncoder_for_AdsDataset.ipynb -------------------------------------------------------------------------------- /Numerical-Experimentation/Monte Carlo Methods to solve ODEs.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jotterbach/Data-Exploration-and-Numerical-Experimentation/HEAD/Numerical-Experimentation/Monte Carlo Methods to solve ODEs.ipynb -------------------------------------------------------------------------------- /Numerical-Experimentation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jotterbach/Data-Exploration-and-Numerical-Experimentation/HEAD/Numerical-Experimentation/README.md -------------------------------------------------------------------------------- /Numerical-Experimentation/Series of N equals in coin tosses.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jotterbach/Data-Exploration-and-Numerical-Experimentation/HEAD/Numerical-Experimentation/Series of N equals in coin tosses.ipynb -------------------------------------------------------------------------------- /Numerical-Experimentation/SuperConducting_Qubits.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jotterbach/Data-Exploration-and-Numerical-Experimentation/HEAD/Numerical-Experimentation/SuperConducting_Qubits.ipynb -------------------------------------------------------------------------------- /Numerical-Experimentation/The Monty Hall Problem.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jotterbach/Data-Exploration-and-Numerical-Experimentation/HEAD/Numerical-Experimentation/The Monty Hall Problem.ipynb -------------------------------------------------------------------------------- /Numerical-Experimentation/The Two Envelope Paradox.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jotterbach/Data-Exploration-and-Numerical-Experimentation/HEAD/Numerical-Experimentation/The Two Envelope Paradox.ipynb -------------------------------------------------------------------------------- /Numerical-Experimentation/t-SNE and the KL Divergence.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jotterbach/Data-Exploration-and-Numerical-Experimentation/HEAD/Numerical-Experimentation/t-SNE and the KL Divergence.ipynb -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jotterbach/Data-Exploration-and-Numerical-Experimentation/HEAD/README.md -------------------------------------------------------------------------------- /styles/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jotterbach/Data-Exploration-and-Numerical-Experimentation/HEAD/styles/custom.css -------------------------------------------------------------------------------- /styles/matplotlibrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jotterbach/Data-Exploration-and-Numerical-Experimentation/HEAD/styles/matplotlibrc --------------------------------------------------------------------------------