Spaces:
Running
Running
Update functions/PitchPlotFunctions.py
Browse files
functions/PitchPlotFunctions.py
CHANGED
|
@@ -557,8 +557,8 @@ class PitchPlotFunctions:
|
|
| 557 |
sns.set_theme(style="whitegrid", rc=self.sns_custom_theme()[0])
|
| 558 |
|
| 559 |
# Create a figure and a gridspec with 6 rows and 5 columns
|
| 560 |
-
fig = plt.figure(figsize=(
|
| 561 |
-
gs = gridspec.GridSpec(6, 5, figure=fig, height_ratios=[0.001, 5, 30, 7, 2, 0.001], width_ratios=[
|
| 562 |
gs.update(hspace=0.1, wspace=0.1)
|
| 563 |
# Create subplots for player headshot, bio, and logo
|
| 564 |
ax_headshot = fig.add_subplot(gs[1, 1])
|
|
|
|
| 557 |
sns.set_theme(style="whitegrid", rc=self.sns_custom_theme()[0])
|
| 558 |
|
| 559 |
# Create a figure and a gridspec with 6 rows and 5 columns
|
| 560 |
+
fig = plt.figure(figsize=(, 9))
|
| 561 |
+
gs = gridspec.GridSpec(6, 5, figure=fig, height_ratios=[0.001, 5, 30, 7, 2, 0.001], width_ratios=[1, 10, 10, 10, 1])
|
| 562 |
gs.update(hspace=0.1, wspace=0.1)
|
| 563 |
# Create subplots for player headshot, bio, and logo
|
| 564 |
ax_headshot = fig.add_subplot(gs[1, 1])
|