You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have a question. If I pull in the 2019-2020 season like so
play_files = []
for i in range(2019,2020):
play_files.append(f"https://raw.githubusercontent.com/statsbomb/amf-open-data/main/data/plays/tb12_plays_dataset_{i}_{i+1}.csv")
plays = pd.concat([pd.read_csv(file) for file in play_files])
I have a question. If I pull in the 2019-2020 season like so
then show all the teams that scored a fieldgoal
I only get the teams:
['NE', 'PIT', 'BUF', 'CLE', 'BAL', 'PHI', 'DAL', 'KC', 'CIN', 'MIA']
Either I'm querying for the data wrong or the data is incomplete -- there's no way only 10 teams had fieldgoals in that season.
The text was updated successfully, but these errors were encountered: