Skip to content

Commit 80a2bd8

Browse files
authored
Update analyze-baseball-stats-with-pandas-and-matplotlib.mdx
1 parent 69e8822 commit 80a2bd8

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

projects/analyze-baseball-stats-with-pandas-and-matplotlib/analyze-baseball-stats-with-pandas-and-matplotlib.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -276,7 +276,7 @@ plt.plot(league_avg_hr.index,
276276
plt.plot(
277277
rockies_hr.index,
278278
rockies_hr.values,
279-
label='Colorado Rockies'
279+
label='Colorado Rockies',
280280
color='#33006F'
281281
)
282282

@@ -289,7 +289,7 @@ plt.grid(True)
289289
plt.show()
290290
```
291291

292-
The official purple for the Colorado Rockies is `##33006F`, so we used that above. 💜
292+
The official purple for the Colorado Rockies is `#33006F`, so we used that above. 💜
293293

294294
The graph should look like:
295295

0 commit comments

Comments
 (0)