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
73 periods = players_subbed_in_at_each_period['PERIOD'].drop_duplicates().values.tolist()
Sometimes the game has no substitutions, which may miss the period. periods = play_by_play['PERIOD'].drop_duplicates().values.tolist()
This avoids the problem.
73 periods = players_subbed_in_at_each_period['PERIOD'].drop_duplicates().values.tolist()Sometimes the game has no substitutions, which may miss the period.
periods = play_by_play['PERIOD'].drop_duplicates().values.tolist()This avoids the problem.