Skip to content

Latest commit

 

History

History
14 lines (13 loc) · 672 Bytes

aider_hints.md

File metadata and controls

14 lines (13 loc) · 672 Bytes

We're dealing with car telemetry data from a racing game. The pandas data frame has the following columns:

print(df.columns)
Index(['result', 'table', '_start', '_stop', '_time', 'CarModel', 'CurrentLap',
       'GameName', 'SessionId', 'SessionTypeName', 'TrackCode', '_measurement',
       'host', 'topic', 'user', 'Brake', 'Clutch', 'CurrentLapIsValid',
       'CurrentLapTime', 'DistanceRoundTrack', 'Gear', 'Handbrake',
       'LapTimePrevious', 'Pitch', 'PreviousLapWasValid', 'Roll', 'Rpms',
       'SpeedMs', 'SteeringAngle', 'Throttle', 'TyreType', 'WorldPosition_x',
       'WorldPosition_y', 'WorldPosition_z', 'Yaw', 'id'],
      dtype='object')