Install Your Toolkit
You only need to do this once. Anaconda gives you Python plus every data science library you'll need — all in one installer. Jupyter is already inside it.
Step 1 — Download & Install Anaconda
-
1Go to the Anaconda download pageVisit anaconda.com/download and click the big green "Download" button. It will detect your operating system automatically.
-
2Run the installerOpen the downloaded file and follow the prompts. When asked, choose "Install for me only" (not all users). Leave all other options at their defaults — don't change the install path.
-
3Wait (this takes 5–10 minutes)Anaconda installs Python, Jupyter Notebook, pandas, matplotlib, numpy, and dozens of other libraries all at once. Don't close the window until it says "Installation Complete."
Step 2 — Launch Jupyter Notebook
-
1Open Anaconda NavigatorFind "Anaconda Navigator" in your Start menu (Windows) or Applications folder (Mac) and open it. It looks like a control panel with app icons.
-
2Click "Launch" under Jupyter NotebookA browser tab will open showing your file system. This is Jupyter — it runs locally on your computer, not on the internet. Don't close the terminal window that appeared in the background.
-
3Create your first notebookClick "New" → "Python 3 (ipykernel)". A blank notebook opens. Type the following in the first cell and press Shift+Enter to run it:
print("Hello, data science!") -
4Test that pandas and matplotlib are installedIn a new cell, type and run:
import pandas as pd import matplotlib.pyplot as plt print("pandas version:", pd.__version__) print("Ready to go!")If you see version numbers instead of error messages, you're all set.
!pip install pandas matplotlib — then restart the kernel and try again.
Learn Pandas from the Source
The official Python documentation is the best reference in the world. Bookmark these — you'll use them all week.
Speak the Language
Twenty terms you'll hear all week. Master these and you'll be able to read any data science tutorial or article.
Choose Your Analysis
Pick one question to drive your week. You'll spend Days 3–5 building a Jupyter notebook that answers it with real data and real graphs. Click any card for the full brief.
Where to Get Cricket Data
All of these are free. Start with Cricsheet or the Kaggle ODI dataset — both are well-structured and work well with pandas. Download the CSV format where available.
Questions Worth Exploring
You don't have to answer all of these. Pick two or three that interest you and go deep. The best analyses start with a genuine question, not a technique.
The 5-Day Data Journey
Monday through Friday, each day has a focus, code to write, and a journal prompt. Saturday is the meetup. Expand each day to see everything.
Discussion Questions
Questions to think about during the week and fuel the Saturday conversation. The best ones don't have clean answers.
The Saturday Meetup
By Saturday you've written real code, loaded real data, and built real graphs. Now you show what you found — and defend your conclusions.
Pick Your Presentation Format
There are three ways to present. Pick whichever fits you best. All three are equally valid. Click the cards below to see exactly what's expected.
Meetup Agenda
Here's how to run the Saturday session together.