Formula 1 2021 World Championship
Module
Introduction
Formula 1 is one of the most popular motorsports in the world, known for its high speed, innovative technology, and luxury. The season is made up of 22 Grand Prix held around the world with 20 drivers in each race. There are 10 construcstors (teams), each having two drivers. Generally, each grand prix has a practice session, a qualifying session which makes up the starting grid, and then the race.
The data set for this activity was taken from kaggle Formula1. The dataset in this activity was made by combining many different data sets and is cleaned so it only has data from the 2021 season. Each row has every driver with their corresponding team from every grand prix from the 2021 season. It also contains data from their qualifying position (starting position) and finishing position as well as their points from each race.
Data
This data set has 440 rows with each rows containing every race from the 2021 season for each driver. These rows have 11 columns with race statistics.
Variable Descriptions
Variable | Description |
---|---|
raceId | Unique identifier for the race |
driverId | Unique identifier for the driver |
driverRef | Reference code or short name for the driver |
constructorId | Unique identifier for the constructor |
constructorRef | Reference code or short name for the constructor |
grid | Starting grid position of the driver |
position | Final finishing position of the driver |
points | Points earned by the driver in the race |
fastestLapSpeed | Speed of the driver’s fastest lap in the race |
stop | Number of pit stops made by the driver |
driver_highlight | Key highlight or notable performance aspect for the driver |
Data Source
The data is obtained from Kaggle (Formula1).
Materials
F1-2021.csv - data set containing statistics from the 2021 F1 season found on the SCORE Network Data Repository
F1_Worksheet.qmd - Worksheet to practice identifying trends and writing R code to create graphs.
F1_Handout.docx - Handout to reference graph you will need to create.
Solutions for questions:
F1_Worksheet_Key.qmd - Worksheet Key to check answers