๐ Resources
Table of contents
Past Exams
Past exams with detailed solutions can be found at practice.dsc80.com.
Videos
Readings
Textbooks
- notes.dsc80.com, our course notes.
- Wes McKinney. โPython for Data Analysisโ.
- DSC 10 Course Notes โ great refresher on
babypandas
. - Principles and Techniques of Data Science, the textbook for Berkeleyโs Data 100 course.
- Computational and Inferential Thinking, the textbook for Berkeleyโs Data 8 course.
Extra Lecture Notebooks
- Lecture 11: Fast Permutation Tests.
- Lecture 12: More Missingness Examples.
Articles
- Views and Copies in
pandas
โ a great read if youโd like to learn more about the infamousSettingWithCopyWarning
. - jwilber.me/permutationtest, a great visual explanation of permutation testing.
- A Visual Introduction to Machine Learning and Model Tuning and the Bias-Variance Tradeoff, excellent visual descriptions of the last few weeks of the course (some terminology is different, but the ideas are the same).
Other Links
- pandastutor.com, the equivalent of pythontutor.com for DataFrame manipulation.
Regular Expressions
- regex101.com, a helpful site to have open while writing regular expressions.
- Python
re
library documentation and how-to. - regex โcheat sheetโ (taken from here).