NASCAR Champion History (1949-Present)
67 Years of NASCAR Champion History Data
@kaggle.drubal_nascar_champion_history_1949present
67 Years of NASCAR Champion History Data
@kaggle.drubal_nascar_champion_history_1949present
Context
I have been a NASCAR fan since the 1970s and share the amazing history of this sport by creating and posting a simple dataset focused on 67 years of NASCAR Champion history (1949-Present).
Content
There are five columns (Year, Driver, Car Number, Manufacturer and Wins) and 116 rows in this dataset. I will update the dataset every every year going forward after the champion has been determined. Please suggest other data to be included in the dataset!
Acknowledgements
The NASCAR information was compiled from information found on https://en.wikipedia.org/wiki/List_of_Monster_Energy_NASCAR_Cup_Series_champions
CREATE TABLE nascar_champion_history_dataset (
"year" BIGINT,
"driver" VARCHAR,
"car_number" BIGINT,
"car_manufacturer" VARCHAR,
"wins" BIGINT
);
Anyone who has the link will be able to view this.