Tuesday Tip #9: Calculate scoring runs in basketball πŸ€


Hi Reader!

Before we get to today's tip, I have three big launch announcements:

1. My new course, Become a Regex Superhero, launches this Friday! Watch out for more info and a huge launch discount.

2. I recently launched location-based pricing. I'm offering a discount of up to 85% to residents of 160+ countries.

3. My pal Ben Collins just launched a new course, Beginner Apps Script, which lets you extend the functionality of Google Sheets (and other Google Apps). Ben is the best Sheets teacher I know and is offering 50% off during the launch! (FYI, this is an affiliate link, which means that I may earn a commission if you sign up using my link.)


πŸ‘‰ Tip #9: Calculate basketball scoring runs

Are you watching March Madness? If so, hit reply and let me know how your bracket is doing πŸ˜‚

For those who don't know, March Madness is a US college basketball tournament. One term that you'll hear a lot during games is scoring runs.

For example, a team that's on a "12-point scoring run" has scored 12 points without the other team scoring any points.

So I was wondering: How could we calculate scoring runs using pandas? 🐼

Let's find out!


Example scoring data

Let's pretend this was our scoring data. There's one row for each time a team scored points:

In this case, the largest scoring run was when A scored 9 points in a row.


Identify each scoring run

Now we need to figure out when each scoring run starts!

First, we use the shift() method to shift all of the teams down a row, and store those in a column called previous_team:

Then, we check if team is not equal to previous_team, and store the boolean result in a column called start_of_run:

Do you see how that works?

By checking whether a given team value is equal to the value in the previous row, we now know when each scoring run starts!

Finally, we use the cumsum() method to assign a run_id to each scoring run:

Wait, what just happened?

Any time you do math on a boolean column, True gets treated as 1 and False gets treated as 0. Thus by taking the cumulative sum of the start_of_run column, the run_id increments every time it reaches a True value. (Neat, right?)

Shout out to Josh Devlin's excellent blog post, Calculating Streaks in Pandas, for teaching me this exact approach!


List all scoring runs

Now that each run has been assigned an id, we use a groupby() to show the number of points scored by each team during each run:

That's it! Here's the code from today's tip, in case you want to play around with it.

How else could we analyze this data using pandas? πŸ€”

Have an idea? Hit reply and let me know! πŸ’‘


If you enjoyed this week's tip, please forward it to a friend! Takes only a few seconds, and it really helps me out πŸ™

See you next Tuesday!

- Kevin

P.S. Six people predicted the Final Four correctly​

Did someone awesome forward you this email? Sign up here to receive data science tips every week!

Learn Artificial Intelligence from Data School πŸ€–

Join 25,000+ intelligent readers and receive AI tips every Tuesday!

Read more from Learn Artificial Intelligence from Data School πŸ€–

Hi Reader, Today I'm trying something brand new! I wrote short summaries of the 5 most important AI stories this week, and also turned it into a video: Watch the video I'd love to know what you think! πŸ’¬ AI-generated TV ad airs during NBA finals Prediction market Kalshi just aired this AI-generated ad on network TV during the NBA finals. It was created in just two days by one person using Google's new Veo 3 video model, plus scripting help from Google's Gemini chatbot. Expect to see many more...

Hi Reader, Thanks for sticking with me through last week’s course launch! πŸ™ As you may have noticed, Tuesday Tips has been on pause for a few months. I was focused on launching the course, plus I’ve been working on a book 🀫 I can’t promise a new tip every Tuesday, but I’ll do my best to provide you with valuable content as time permits. As for today’s tip, I’m trying out something new… πŸ‘‡ Sponsored by: Superhuman AI Find out why 1M+ professionals read Superhuman AI daily. AI won't take over...

Hi Reader, This week, I've got a short tip about AI agents, followed by some Data School news... πŸ‘‰ Tip #56: What are AI agents? Google is calling 2025 "the agentic era," DeepLearning.AI says "the agentic era is upon us," and NVIDIA's founder says "one of the most important things happening in the world of enterprise is agentic AI." Clearly AI agents are a big deal, but what exactly are they? Simply put, an AI agent is an application that uses a Large Language Model (LLM) to control its...