5 Matching Annotations
  1. Apr 2021
    1. fig, axes = plt.subplots(nrows=1, ncols=1, figsize=(15,5), dpi=120)

      I think just plt.figure(figsize=(15,5), dpi=120) would be just as fine. I would also suggest xticks(positions, names) method for labeling every pair of bars for maybe easier interpretation.

    2. plt.suptitle("\n".join(['Points won on the first serve by:']), y=1.1, fontweight='bold', fontsize = 15)

      I guess that title was meant to be 'Points won on the second serve by:'

    3. plt.show()

      Great table!