Skip to content

Commit 81f3f07

Browse files
committed
fix(syntax): mismatch quotes
1 parent 91766ec commit 81f3f07

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -242,7 +242,7 @@ Then, to find the Rockies specifically, we can filter by `teamID`:
242242
```py
243243
rockies_hr = (
244244
team_hr_per_year
245-
[team_hr_per_year['teamID"] == 'COL']
245+
[team_hr_per_year['teamID'] == 'COL']
246246
.set_index('yearID')['HR']
247247
)
248248
```

0 commit comments

Comments
 (0)