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
Maybe related to #545
The following columns are not populated in the session results for the 2024 Saudi Arabia GP:
import fastf1 session = fastf1.get_session(2024, 2, "R") session.load(telemetry=False, weather=False, messages=False) result = session.results print(result.isna().sum())
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
The text was updated successfully, but these errors were encountered:
@mdsakalu I haven't looked too deeply but do you think this might also be fixed by #546?
Sorry, something went wrong.
Yes, it's the same problem.
(Just noting that Q1, Q2, Q3 are expected to not be populated in a race session.)
FIX: Gracefully handle Ergast date parse errors (#546)
dd33132
Fixes #545, #547
f02f6d0
Fixes #545, #547 (cherry picked from commit dd33132)
No branches or pull requests
Describe the issue:
Maybe related to #545
The following columns are not populated in the session results for the 2024 Saudi Arabia GP:
Reproduce the code example:
Error message:
The text was updated successfully, but these errors were encountered: