Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/aishwaryagm1999/electric-vehicles-dataset-data-analaysis
Performed Data Cleaning and Data Analysis of the Electric Vehicles Dataset to find the relationship between the features in the dataset and visualized the findings using matplotlib and seaborn.
https://github.com/aishwaryagm1999/electric-vehicles-dataset-data-analaysis
data-analysis-python data-visualization electric-vehicle feature-analysis matplotlib numpy pandas python seaborn
Last synced: about 14 hours ago
JSON representation
Performed Data Cleaning and Data Analysis of the Electric Vehicles Dataset to find the relationship between the features in the dataset and visualized the findings using matplotlib and seaborn.
- Host: GitHub
- URL: https://github.com/aishwaryagm1999/electric-vehicles-dataset-data-analaysis
- Owner: aishwaryagm1999
- Created: 2022-11-26T15:35:54.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-11-01T06:52:28.000Z (18 days ago)
- Last Synced: 2024-11-01T07:26:04.147Z (18 days ago)
- Topics: data-analysis-python, data-visualization, electric-vehicle, feature-analysis, matplotlib, numpy, pandas, python, seaborn
- Language: Jupyter Notebook
- Homepage:
- Size: 165 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Electric-Vehicles-Dataset-Data-Analaysis
Performed Data Cleaning and Data Analysis of the Electric Vehicles Dataset to find the relationship between the features in the dataset and visualize the same using matplotlib and seaborn.The notebook provides a data analysis of an electric vehicle dataset, covering several aspects:
1. **Data Loading & Cleaning**:
- Imports necessary libraries (`numpy`, `pandas`, `matplotlib`, `seaborn`).
- Loads the dataset and displays an initial preview.
- Checks for NaN and infinite values, removing invalid entries from the `FastCharge_KmH` column.2. **Exploratory Data Analysis (EDA)**:
- Analyzes and visualizes various features:
- **Body Style**: Counts each vehicle body style and highlights the most common (SUV) and least common styles (MPV and Station).
- **Powertrain Types**: Uses a pie chart to show that AWD is the most common type.
- **Range and Price Correlation**: Uses a scatter plot, finding a positive correlation between range and price.
- **Rapid Charging**: Lists vehicles without rapid charging capability.
- **Fast Charge Performance**: Identifies vehicles with the highest and lowest values in `FastCharge_KmH`.
- **Brand Analysis**: Displays the number of models per brand, showing Tesla as the brand with the most models.3. **Advanced Visualizations**:
- **Plug Type vs Price**: A swarm plot reveals that Type 2 CCS plug types cover a broader price range.
- **Seats Analysis**: Averages the number of seats across vehicles.
- **Efficiency by Segment**: Uses a bar plot to show segment efficiency, noting that Segment N has the highest efficiency.The notebook effectively uses plots and queries to uncover relationships and patterns within the dataset.