We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I have cleared my nflverse cache and the issue persists.
0.3.3
The following players appear in weekly data with a player_id, but no gsis_id in import_ids():
['Taylor Decker', 'Trenton Scott', 'Mike Caliendo', 'Tyler Smith', 'Vederian Lowe', 'Tanner Conner', 'Tyreik McAllister', 'Juanyeh Thomas', 'Aaron Shampklin', 'Tucker Fisk', 'Ben VanSumeren', 'Grant DuBose', 'Christopher Brooks', 'Blake Whiteheart', 'Ryan Miller', 'Brycen Tremayne', 'John Samuel Shenker', 'Wanya Morris', 'Jermaine Jackson', 'Cam Grandy', 'Bryce Oliver', 'Terrell Jennings']
This makes it difficult to join to other data sources in the package (pfr,ftn,etc.).
import pandas as pd import numpy as np import nfl_data_py as nfl weekly_df = nfl.import_weekly_data([2024]) id_df = nfl.import_ids() weekly_df = pd.merge(weekly_df, id_df[['gsis_id', 'pfr_id']], left_on='player_id', right_on='gsis_id', how='left', indicator=True) [i for i in weekly_df[weekly_df['_merge']=='left_only']['player_display_name'].unique()]
Would expect a query on 'left_only' to return no results.
NA
No response
The text was updated successfully, but these errors were encountered:
This is actually an issue about missing gsis_id <-> pfr_id mappings of some players.
Some notes on this:
import_ids()
Sorry, something went wrong.
No branches or pull requests
Is there an existing issue for this?
Have you installed the latest development version of the package(s) in question?
If this is a data issue, have you tried clearing your nflverse cache?
I have cleared my nflverse cache and the issue persists.
What version of the package do you have?
0.3.3
Describe the bug
The following players appear in weekly data with a player_id, but no gsis_id in import_ids():
['Taylor Decker',
'Trenton Scott',
'Mike Caliendo',
'Tyler Smith',
'Vederian Lowe',
'Tanner Conner',
'Tyreik McAllister',
'Juanyeh Thomas',
'Aaron Shampklin',
'Tucker Fisk',
'Ben VanSumeren',
'Grant DuBose',
'Christopher Brooks',
'Blake Whiteheart',
'Ryan Miller',
'Brycen Tremayne',
'John Samuel Shenker',
'Wanya Morris',
'Jermaine Jackson',
'Cam Grandy',
'Bryce Oliver',
'Terrell Jennings']
This makes it difficult to join to other data sources in the package (pfr,ftn,etc.).
Reprex
Expected Behavior
Would expect a query on 'left_only' to return no results.
nflverse_sitrep
NA
Screenshots
No response
Additional context
No response
The text was updated successfully, but these errors were encountered: