Baselight

Formula 1 Race Events

Tables of safety car deployments and red flags in Formula 1 Grand Prix races

@kaggle.jtrotman_formula_1_race_events

Safety Cars
@kaggle.jtrotman_formula_1_race_events.safety_cars

  • 7.91 KB
  • 346 rows
  • 5 columns
race

Race

cause

Cause

deployed

Deployed

retreated

Retreated

fulllaps

FullLaps

1973 Canadian Grand PrixAccident33395
1993 Brazilian Grand PrixAccident/Rain29388
1993 British Grand PrixStranded car38401
1994 San Marino Grand PrixAccident164
1995 Belgian Grand PrixRain28334
1996 Argentine Grand PrixAccident28334
1996 Belgian Grand PrixAccident13184
1997 Argentine Grand PrixAccident154
1997 Belgian Grand PrixRain143
1998 Canadian Grand PrixAccident164

CREATE TABLE safety_cars (
  "race" VARCHAR,
  "cause" VARCHAR,
  "deployed" BIGINT,
  "retreated" DOUBLE,
  "fulllaps" BIGINT
);

Share link

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