From 1bfbd3804a133da719c4881e63ce9dd6bb152f3b Mon Sep 17 00:00:00 2001 From: SCasanova Date: Mon, 20 Jun 2022 21:10:13 -0500 Subject: [PATCH] Update README --- README.md | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/README.md b/README.md index c4f2beb5..30f3ce53 100644 --- a/README.md +++ b/README.md @@ -204,3 +204,17 @@ load_pitstops(2021, 20) # … with 20 more rows ``` +## Loaded Data + +The package also includes a static data frame for all current drivers and their respective constructors. Complete with team colors, logo and driver number logo. + +```{r} +f1dataR::driver_constructor_data %>% colnames() + +[1] "driverId" "fullName" +[3] "constructor" "constructorColor" +[5] "constructorColor2" "constructorLogo" +[7] "driverNumber" "numberImage" +[9] "season" + +```