figure(1)
Matlab? :) Maybe just setting a title and plt.show() is a good practice
figure(1)
Matlab? :) Maybe just setting a title and plt.show() is a good practice
¶
Great idea!
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.
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:'
plt.show()
Great table!