8000 GitHub - mety0r/F1-Analytics: This project analyzes Formula 1 racing data by creating and managing a relational database using SQL. It leverages DBA tools for database management and integrates Power BI to create interactive dashboards for visual insights into driver standings, race results, and constructor performance.
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

This project analyzes Formula 1 racing data by creating and managing a relational database using SQL. It leverages DBA tools for database management and integrates Power BI to create interactive dashboards for visual insights into driver standings, race results, and constructor performance.

License

Notifications You must be signed in to change notification settings

mety0r/F1-Analytics

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

40 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Formula 1 Data Analysis with DBMS and Power BI Dashboard

Project Overview

This project utilizes a relational database management system (DBMS) to manage and analyze Formula 1 racing data. The data is loaded into SQL tables from various CSV files and then analyzed using SQL queries. A Power BI dashboard is used to visualize the results, providing insights into various aspects of Formula 1 races, such as driver standings, lap times, and race results.

Setup Instructions

Clone the repository

https://github.com/mety0r/F1-Analytics.git

Database Setup:

  • Ensure you have a MySQL database installed.
  • Run the provided SQL scripts to create and populate the tables.
  • The CSV files must be available locally on your system to load the data into the respective tables.
  CREATE DATABASE formula1;
USE formula1;
-- Run the SQL commands to create tables and load data from CSV files.

Loading CSV Data

  • Modify the file paths in the LOAD DATA statements to match the location of the CSV files on your system.
   LOAD DATA LOCAL INFILE 'C:/path/to/circuits.csv'
INTO TABLE circuits
FIELDS TERMINATED BY ',' ENCLOSED BY '"'
LINES TERMINATED BY '\n'
IGNORE 1 ROWS;

Power BI Setup:

  • Import the SQL data into Power BI.
  • Use the pre-designed dashboard template (if available) to visualize the data.

Snapshots

About

This project analyzes Formula 1 racing data by creating and managing a relational database using SQL. It leverages DBA tools for database management and integrates Power BI to create interactive dashboards for visual insights into driver standings, race results, and constructor performance.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published
0