Haleshot commited on
Commit
daee87c
·
unverified ·
1 Parent(s): 9aa97cc

Remove `y_ticks`

Browse files
Files changed (1) hide show
  1. probability/02_axioms.py +1 -1
probability/02_axioms.py CHANGED
@@ -123,7 +123,7 @@ def _(event, mo, np, plt):
123
  fig, ax = plt.subplots(figsize=(8, 2))
124
  ax.bar(dice, np.ones_like(dice), color=colors)
125
  ax.set_xticks(dice)
126
- ax.set_ylim(0, 1.2)
127
  ax.set_title(f"P(Event) = {prob:.2f}")
128
 
129
  # Add explanation
 
123
  fig, ax = plt.subplots(figsize=(8, 2))
124
  ax.bar(dice, np.ones_like(dice), color=colors)
125
  ax.set_xticks(dice)
126
+ ax.set_yticks([])
127
  ax.set_title(f"P(Event) = {prob:.2f}")
128
 
129
  # Add explanation