Baselight

Formula 1 Race Data

Race data from 1950 to present

@kaggle.jtrotman_formula_1_race_data

Pit Stops
@kaggle.jtrotman_formula_1_race_data.pit_stops

  • 192.34 KB
  • 11371 rows
  • 7 columns
raceid

RaceId

driverid

DriverId

stop

Stop

lap

Lap

time

Time

duration

Duration

milliseconds

Milliseconds

8411531117:05:2326.89826898
841301117:05:5225.02125021
8411711117:20:4823.42623426
841411217:22:3423.25123251
8411311317:24:1023.84223842
8412211317:24:2923.64323643
8412011417:25:1722.60322603
84181411417:26:0324.86324863
84181611417:26:5025.25925259
8416711517:27:3425.34225342

CREATE TABLE pit_stops (
  "raceid" BIGINT,
  "driverid" BIGINT,
  "stop" BIGINT,
  "lap" BIGINT,
  "time" VARCHAR,
  "duration" VARCHAR,
  "milliseconds" BIGINT
);

Share link

Anyone who has the link will be able to view this.