Probability¶
Hot Hands¶
We do not expect to resolve this controversy today. However, in this lab we'll apply one approach to answering questions like this. The goals for this lab are to (1) think about the effects of independent and dependent events, (2) learn how to simulate shooting streaks in Python, and (3) to compare a simulation to actual data in order to determine if the hot hand phenomenon appears to be real.
# for Mac OS users only!
# if you run into any SSL certification issues,
# you may need to run the following command for a Mac OS installation.
# $/Applications/Python 3.x/Install Certificates.command
import os, ssl
if (not os.environ.get('PYTHONHTTPSVERIFY', '') and
getattr(ssl, '_create_unverified_context', None)):
ssl._create_default_https_context = ssl._create_unverified_context
Getting started¶
import pandas as pd
kobe = pd.read_csv('https://www.openintro.org/stat/data/kobe.csv')
kobe.head()
vs | game | quarter | time | description | basket | |
---|---|---|---|---|---|---|
0 | ORL | 1 | 1 | 9:47 | Kobe Bryant makes 4-foot two point shot | H |
1 | ORL | 1 | 1 | 9:07 | Kobe Bryant misses jumper | M |
2 | ORL | 1 | 1 | 8:11 | Kobe Bryant misses 7-foot jumper | M |
3 | ORL | 1 | 1 | 7:41 | Kobe Bryant makes 16-foot jumper (Derek Fisher... | H |
4 | ORL | 1 | 1 | 7:03 | Kobe Bryant makes driving layup | H |
print(kobe['game'].nunique())
5
print(kobe['quarter'].unique())
['1' '2' '3' '4' '1OT']
kobe[kobe['quarter'] == '1OT']
vs | game | quarter | time | description | basket | |
---|---|---|---|---|---|---|
53 | ORL | 2 | 1OT | 4:13 | Kobe Bryant misses 22-foot jumper | M |
54 | ORL | 2 | 1OT | 2:17 | Kobe Bryant makes 11-foot two point shot | H |
80 | ORL | 4 | 1OT | 4:13 | Kobe Bryant makes 11-foot jumper | H |
81 | ORL | 4 | 1OT | 3:32 | Kobe Bryant makes 19-foot jumper | H |
82 | ORL | 4 | 1OT | 2:49 | Kobe Bryant misses 10-foot jumper | M |
83 | ORL | 4 | 1OT | 1:58 | Kobe Bryant misses 18-foot jumper | M |
84 | ORL | 4 | 1OT | 0:47 | Kobe Bryant misses 15-foot jumper | M |
game
and quarter
.
kobe
vs | game | quarter | time | description | basket | |
---|---|---|---|---|---|---|
0 | ORL | 1 | 1 | 9:47 | Kobe Bryant makes 4-foot two point shot | H |
1 | ORL | 1 | 1 | 9:07 | Kobe Bryant misses jumper | M |
2 | ORL | 1 | 1 | 8:11 | Kobe Bryant misses 7-foot jumper | M |
3 | ORL | 1 | 1 | 7:41 | Kobe Bryant makes 16-foot jumper (Derek Fisher... | H |
4 | ORL | 1 | 1 | 7:03 | Kobe Bryant makes driving layup | H |
... | ... | ... | ... | ... | ... | ... |
128 | ORL | 3 | 4 | 3:33 | Bryant Layup Shot: Missed | M |
129 | ORL | 3 | 4 | 2:02 | Bryant 3pt Shot: Missed | M |
130 | ORL | 3 | 4 | 00:23.9 | Bryant 3pt Shot: Missed | M |
131 | ORL | 3 | 4 | 00:06.9 | Bryant 3pt Shot: Missed | M |
132 | ORL | 3 | 4 | 00:00.5 | Bryant Layup Shot: Made (31 PTS) | H |
133 rows × 6 columns
game
and quarter
in ascending orders.
First, let's replace "1OT" with "5" for the quarter
column to make sorting easier.
kobe['quarter'] = kobe['quarter'].replace('1OT', '5')
kobe['quarter'] = kobe['quarter'].astype(int)
game
and quarter
in ascending orders, and finally begin talking about the concept of probability.
kobe.sort_values(by = ['game', 'quarter'], ascending = [True, True], ignore_index = True, inplace = True)
# Note: time is already in descending order for each game and quarter, so we do not need to sort that one.
kobe
vs | game | quarter | time | description | basket | |
---|---|---|---|---|---|---|
0 | ORL | 1 | 1 | 9:47 | Kobe Bryant makes 4-foot two point shot | H |
1 | ORL | 1 | 1 | 9:07 | Kobe Bryant misses jumper | M |
2 | ORL | 1 | 1 | 8:11 | Kobe Bryant misses 7-foot jumper | M |
3 | ORL | 1 | 1 | 7:41 | Kobe Bryant makes 16-foot jumper (Derek Fisher... | H |
4 | ORL | 1 | 1 | 7:03 | Kobe Bryant makes driving layup | H |
... | ... | ... | ... | ... | ... | ... |
128 | ORL | 5 | 4 | 6:22 | Kobe Bryant misses 18-foot jumper | M |
129 | ORL | 5 | 4 | 4:26 | Kobe Bryant misses 27-foot three point jumper | M |
130 | ORL | 5 | 4 | 3:12 | Kobe Bryant misses 27-foot three point jumper | M |
131 | ORL | 5 | 4 | 2:38 | Kobe Bryant makes 9-foot two point shot | H |
132 | ORL | 5 | 4 | 2:06 | Kobe Bryant misses 13-foot jumper | M |
133 rows × 6 columns
H
, is recorded in the column named basket, otherwise a miss, M
, is recorded.
Just looking at the string of hits and misses, it can be difficult to gauge whether or not it seems like Kobe was shooting with a hot hand. One way we can approach this is by considering the belief that hot hand shooters tend to go on shooting streaks. For this lab, we define the length of a shooting streak to be the number of consecutive baskets made until a miss occurs.
For example, in Game 1 Kobe had the following sequence of hits and misses from his nine shot attempts in the first quarter:
H M | M | H H M | M | M | M
¶
To verify this use the following command:
kobe['basket'][0:9]
0 H 1 M 2 M 3 H 4 H 5 M 6 M 7 M 8 M Name: basket, dtype: object
Exercise 1
What does a streak length of 1 mean, i.e. how many hits and misses are in a streak of 1? What about a streak length of 0?
calc_streak()
can be used to calculate the lengths of all shooting streaks.
def calc_streak(x):
all_shoots = list(x)
streak, count = [], 0
for shoot in all_shoots:
if shoot == 'H':
count += 1
elif shoot == 'M':
streak.append(count)
count = 0
# If the last shoot is a hit, make sure to append the last count to the streak list as well.
if all_shoots[-1] == 'H':
streak.append(count)
return streak
kobe_streak = calc_streak(kobe['basket'])
print(kobe_streak)
[1, 0, 2, 0, 0, 0, 3, 2, 0, 3, 0, 1, 3, 0, 0, 0, 0, 0, 1, 1, 0, 4, 1, 0, 1, 0, 1, 0, 1, 4, 3, 1, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 2, 0, 1, 2, 1, 0, 0, 1, 0, 0, 0, 1, 1, 0, 1, 0, 2, 0, 0, 0, 3, 0, 1, 0, 1, 2, 1, 0, 1, 0, 0, 1]
import matplotlib.pyplot as plt
%matplotlib inline
%config InlineBackend.figure_format = 'retina'
plt.style.use('ggplot')
plt.rcParams['figure.figsize'] = (10,5)
kobe_streak_counts = pd.Series(kobe_streak).value_counts().sort_index()
kobe_streak_counts.plot(kind = 'bar', color = 'crimson')
plt.xlabel('Length of Shooting Streaks')
plt.show();
Exercise 2
Describe the distribution of Kobe's streak lengths from the 2009 NBA finals. What was his typical streak length? How long was his longest streak of baskets?
Compared to What?¶
To answer these questions, let's return to the idea of independence. Two processes are independent if the outcome of one process doesn't effect the outcome of the second. If each shot that a player takes is an independent process, having made or missed your first shot will not affect the probability that you will make or miss your second shot.
A shooter with a hot hand will have shots that are not independent of one another. Specifically, if the shooter makes his first shot, the hot hand model says he will have a higher probability of making his second shot.
Let's suppose for a moment that the hot hand model is valid for Kobe. During his career, the percentage of time Kobe makes a basket (i.e. his shooting percentage) is about 45%, or in probability notation,
P(shot 1 = H) = 0.45
¶
If he makes the first shot and has a hot hand (not independent shots), then the probability that he makes his second shot would go up to, let's say, 60%,
P(shot 2 = H|shot 1 = H) = 0.60
¶
As a result of these increased probabilites, you'd expect Kobe to have longer streaks. Compare this to the skeptical perspective where Kobe does not have a hot hand (where each shot is independent of the next). If he hit his first shot, the probability that he makes the second is still 0.45.
P(shot 2 = H|shot 1 = H) = 0.45
¶
In other words, making the first shot did nothing to effect the probability that he'd make his second shot. If Kobe's shots are independent, then he'd have the same probability of hitting every shot regardless of his past shots: 45%.
Now that we've phrased the situation in terms of independent shots, let's return to the question: how do we tell if Kobe's shooting streaks are long enough to indicate that he has hot hands? We can compare his streak lengths to someone without hot hands: an independent shooter.
Simulations in Python¶
import numpy as np
outcomes = np.array(['heads', 'tails'])
print(np.random.choice(outcomes))
heads
outcomes
can be thought of as a hat with two slips of paper in it: one slip says heads
and the other says tails
. The function random.choice()
draws one slip from the hat and tells us if it was a head or a tail.
Run the second command listed above several times. Just like when flipping a coin, sometimes you'll get a heads, sometimes you'll get a tails, but in the long run, you'd expect to get roughly equal numbers of each.
If you wanted to simulate flipping a fair coin 100 times, you could either run the function 100 times or, more simply, adjust the size
argument, which governs how many samples to draw (the replace = True
argument indicates we put the slip of paper back in the hat before drawing again). Save the resulting array of heads and tails in a new object called sim_fair_coin.
sim_fair_coin = np.random.choice(outcomes, size = 100, replace = True)
unique()
to count up the number of heads and tails:
unique, counts = np.unique(sim_fair_coin, return_counts = True)
print(np.asarray((unique, counts)).T)
[['heads' '45'] ['tails' '55']]
outcomes
, the probability that we "flip" a coin and it lands heads is 0.5. Say we're trying to simulate an unfair coin that we know only lands heads 20% of the time. We can adjust for this by adding an argument called p
, which provides the probabilities associated with each entry in the array.
sim_unfair_coin = np.random.choice(outcomes, size = 100, replace = True, p = [0.2, 0.8])
unique, counts = np.unique(sim_unfair_coin, return_counts = True)
print(np.asarray((unique, counts)).T)
[['heads' '19'] ['tails' '81']]
p = [0.2, 0.8]
indicates that for the two elements in the outcomes array, we want to select the first one, heads
with probability 0.2 and the second one, tails
with probability 0.8. Another way of thinking about this is to think of the outcome space as a bag of 10 chips, where 2 chips are labeled "head" and 8 chips "tail". Therefore at each draw, the probability of drawing a chip that says "head" is 20%, and "tail" is 80%.
Exercise 3
In your simulation of flipping the unfair coin 100 times, how many flips came up heads?
p
argument; all elements in the outcomes
array have an equal probability of being drawn.
Simulating the Independent Shooter¶
outcomes = np.array(['H', 'M'])
sim_basket = np.random.choice(outcomes, size = 133, replace = True, p = [0.45, 0.55])
sim_basket
, we have the data necessary to compare Kobe to our independent shooter. We can look at Kobe's data alongside our simulated data.
print(np.array(kobe['basket']))
['H' 'M' 'M' 'H' 'H' 'M' 'M' 'M' 'M' 'H' 'H' 'H' 'M' 'H' 'H' 'M' 'M' 'H' 'H' 'H' 'M' 'M' 'H' 'M' 'H' 'H' 'H' 'M' 'M' 'M' 'M' 'M' 'M' 'H' 'M' 'H' 'M' 'M' 'H' 'H' 'H' 'H' 'M' 'H' 'M' 'M' 'H' 'M' 'M' 'H' 'M' 'M' 'H' 'M' 'H' 'H' 'H' 'H' 'M' 'H' 'H' 'H' 'M' 'H' 'M' 'H' 'M' 'M' 'M' 'M' 'M' 'M' 'H' 'M' 'H' 'M' 'M' 'M' 'M' 'H' 'H' 'M' 'M' 'H' 'M' 'H' 'H' 'M' 'H' 'M' 'M' 'M' 'H' 'M' 'M' 'M' 'M' 'H' 'M' 'H' 'M' 'M' 'H' 'M' 'M' 'H' 'H' 'M' 'M' 'M' 'M' 'H' 'H' 'H' 'M' 'M' 'H' 'M' 'M' 'H' 'M' 'H' 'H' 'M' 'H' 'M' 'M' 'H' 'M' 'M' 'M' 'H' 'M']
print(sim_basket) # Notice that every time you rerun the simulation above, the results of sim_basket changes.
['M' 'H' 'M' 'M' 'H' 'H' 'H' 'M' 'M' 'H' 'M' 'H' 'M' 'M' 'M' 'H' 'M' 'M' 'M' 'M' 'M' 'H' 'H' 'M' 'M' 'M' 'H' 'H' 'H' 'M' 'M' 'M' 'M' 'M' 'M' 'H' 'M' 'M' 'H' 'H' 'H' 'M' 'H' 'M' 'M' 'M' 'H' 'M' 'H' 'H' 'H' 'M' 'H' 'M' 'M' 'M' 'M' 'H' 'M' 'M' 'M' 'H' 'M' 'M' 'M' 'H' 'M' 'M' 'M' 'H' 'M' 'H' 'M' 'M' 'M' 'M' 'M' 'M' 'M' 'H' 'M' 'M' 'H' 'M' 'H' 'H' 'H' 'H' 'M' 'H' 'M' 'H' 'M' 'M' 'H' 'M' 'M' 'M' 'H' 'M' 'M' 'H' 'H' 'M' 'M' 'M' 'M' 'M' 'H' 'H' 'M' 'H' 'H' 'H' 'M' 'H' 'H' 'H' 'H' 'H' 'M' 'M' 'M' 'M' 'M' 'M' 'M' 'M' 'M' 'H' 'M' 'H' 'M']
On Your Own¶
Comparing Kobe Bryant to the Independent Shooter¶
Using calc_streak()
, compute the streak lengths of sim_basket
.
- Describe the distribution of streak lengths. What is the typical streak length for this simulated independent shooter with a 45% shooting percentage? How long is the player's longest streak of baskets in 133 shots?
- If you were to run the simulation of the independent shooter a second time, how would you expect its streak distribution to compare to the distribution from the question above? Exactly the same? Somewhat similar? Totally different? Explain your reasoning.
- How does Kobe Bryant's distribution of streak lengths compare to the distribution of streak lengths for the simulated shooter? Using this comparison, do you have evidence that the hot hand model fits Kobe's shooting patterns? Explain.
www.featureranking.com