Update functions/pitch_summary_functions.py
Browse files
functions/pitch_summary_functions.py
CHANGED
|
@@ -426,7 +426,7 @@ def pitch_usage(df: pl.DataFrame, ax: plt.Axes):
|
|
| 426 |
ax.axvline(0, color='black', linewidth=1)
|
| 427 |
# ax.get_legend().remove()
|
| 428 |
ax.set_xlim(-100, 100)
|
| 429 |
-
ax.set_xticks(np.arange(-100, 101,
|
| 430 |
ax.set_xticklabels([f"{abs(x)}%" for x in np.arange(-100, 101, 25)], fontdict=font_properties)
|
| 431 |
# Add vertical grid lines only
|
| 432 |
ax.grid(False)
|
|
|
|
| 426 |
ax.axvline(0, color='black', linewidth=1)
|
| 427 |
# ax.get_legend().remove()
|
| 428 |
ax.set_xlim(-100, 100)
|
| 429 |
+
ax.set_xticks(np.arange(-100, 101, 25))
|
| 430 |
ax.set_xticklabels([f"{abs(x)}%" for x in np.arange(-100, 101, 25)], fontdict=font_properties)
|
| 431 |
# Add vertical grid lines only
|
| 432 |
ax.grid(False)
|