|
1 |
| -data-science-from-scratch |
| 1 | +Data Science from Scratch |
2 | 2 | =========================
|
3 | 3 |
|
4 |
| -code for Data Science From Scratch book |
| 4 | +Here's all the code and examples from my book __Data Science from Scratch__. |
| 5 | + |
| 6 | +Each can be used as a library, for example |
| 7 | + |
| 8 | +```python |
| 9 | +from linear_algebra import distance, vector_mean |
| 10 | +v = [1, 2, 3] |
| 11 | +w = [4, 5, 6] |
| 12 | +print distance(v, w) |
| 13 | +print vector_mean([v, w]) |
| 14 | +``` |
| 15 | + |
| 16 | +Or can be run from the command line to get a demo of what it does (and to execute the examples from the book): |
| 17 | + |
| 18 | +```bat |
| 19 | +python recommender_systems.py |
| 20 | +``` |
| 21 | + |
| 22 | +## Table of Contents |
| 23 | + |
| 24 | +1. Introduction |
| 25 | +2. A Crash Course in Python |
| 26 | +3. [Visualizing Data](https://github.com/joelgrus/data-science-from-scratch/blob/master/visualizing_data.py) |
| 27 | +4. [Linear Algebra](https://github.com/joelgrus/data-science-from-scratch/blob/master/linear_algebra.py) |
| 28 | +5. [Statistics](https://github.com/joelgrus/data-science-from-scratch/blob/master/statistics.py) |
| 29 | +6. [Probability](https://github.com/joelgrus/data-science-from-scratch/blob/master/probability.py) |
| 30 | +7. [Hypothesis and Inference](https://github.com/joelgrus/data-science-from-scratch/blob/master/hypothesis_and_inference.py) |
| 31 | +8. [Gradient Descent](https://github.com/joelgrus/data-science-from-scratch/blob/master/gradient_descent.py) |
| 32 | +9. [Getting Data](https://github.com/joelgrus/data-science-from-scratch/blob/master/getting_data.py) |
| 33 | +10. [Working With Data](https://github.com/joelgrus/data-science-from-scratch/blob/master/working_with_data.py) |
| 34 | +11. [Machine Learning](https://github.com/joelgrus/data-science-from-scratch/blob/master/machine_learning.py) |
| 35 | +12. [k-Nearest Neighbors](https://github.com/joelgrus/data-science-from-scratch/blob/master/nearest_neighbors.py) |
| 36 | +13. [Naive Bayes](https://github.com/joelgrus/data-science-from-scratch/blob/master/naive_bayes.py) |
| 37 | +14. [Simple Linear Regression](https://github.com/joelgrus/data-science-from-scratch/blob/master/simple_linear_regression.py) |
| 38 | +15. [Multiple Regression](https://github.com/joelgrus/data-science-from-scratch/blob/master/multiple_regression.py) |
| 39 | +16. [Logistic Regression](https://github.com/joelgrus/data-science-from-scratch/blob/master/logistic_regression.py) |
| 40 | +17. [Decision Trees](https://github.com/joelgrus/data-science-from-scratch/blob/master/decision_trees.py) |
| 41 | +18. [Neural Networks](https://github.com/joelgrus/data-science-from-scratch/blob/master/neural_networks.py) |
| 42 | +19. [Clustering](https://github.com/joelgrus/data-science-from-scratch/blob/master/clustering.py) |
| 43 | +20. [Natural Language Processing](https://github.com/joelgrus/data-science-from-scratch/blob/master/natural_language_processing.py) |
| 44 | +21. [Network Analysis](https://github.com/joelgrus/data-science-from-scratch/blob/master/network_analysis.py) |
| 45 | +22. [Recommender Systems](https://github.com/joelgrus/data-science-from-scratch/blob/master/recommender_systems.py) |
| 46 | +23. [Databases and SQL](https://github.com/joelgrus/data-science-from-scratch/blob/master/databases.py) |
| 47 | +24. [MapReduce](https://github.com/joelgrus/data-science-from-scratch/blob/master/mapreduce.py) |
| 48 | +25. Go Forth And Do Data Science |
0 commit comments