Skip to content
New issue

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

[BUG] Saudi Arabia GP race result missing position related values #547

Closed
Casper-Guo opened this issue Mar 10, 2024 · 2 comments
Closed

Comments

@Casper-Guo
Copy link
Contributor

Casper-Guo commented Mar 10, 2024

Describe the issue:

Maybe related to #545

The following columns are not populated in the session results for the 2024 Saudi Arabia GP:

  • Position
  • GridPosition
  • ClassifiedPosition
  • Q1
  • Q2
  • Q3
  • Time
  • Points

Reproduce the code example:

import fastf1

session = fastf1.get_session(2024, 2, "R")
session.load(telemetry=False, weather=False, messages=False)
result = session.results
print(result.isna().sum())

Error message:

DriverNumber           0
BroadcastName          0
Abbreviation           0
DriverId               0
TeamName               0
TeamColor              0
TeamId                 0
FirstName              0
LastName               0
FullName               0
HeadshotUrl            0
CountryCode            0
Position              20
ClassifiedPosition     0
GridPosition          20
Q1                    20
Q2                    20
Q3                    20
Time                  20
Status                 0
Points                20
dtype: int64

count     20
unique     1
top         
freq      20
Name: ClassifiedPosition, dtype: object
@Casper-Guo
Copy link
Contributor Author

@mdsakalu I haven't looked too deeply but do you think this might also be fixed by #546?

@theOehrly
Copy link
Owner

Yes, it's the same problem.

(Just noting that Q1, Q2, Q3 are expected to not be populated in a race session.)

theOehrly pushed a commit that referenced this issue Mar 10, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants