An open API service indexing awesome lists of open source software.

https://github.com/asghar-rizvi/youtube-statistics-project

This project analyzes a dataset of global YouTube statistics to uncover insights about YouTube channels, their ranks, and other attributes. The dataset used for this analysis was obtained from Kaggle.
https://github.com/asghar-rizvi/youtube-statistics-project

data-analysis data-analysis-python data-science data-science-projects matplotlib numpy pandas pycharm-ide python seaborn

Last synced: 2 days ago
JSON representation

This project analyzes a dataset of global YouTube statistics to uncover insights about YouTube channels, their ranks, and other attributes. The dataset used for this analysis was obtained from Kaggle.

Awesome Lists containing this project

README

          

# YouTube-Statistics-Project
This project analyzes a dataset of global YouTube statistics to uncover insights about YouTube channels, their ranks, and other attributes. The dataset used for this analysis was obtained from Kaggle.

## Project Structure
├── Data_sets
│ ├── Global YouTube Statistics.csv
│ └── cleaned_data.xlsx
├── main.py
├── Loading_file.py
├── Cleaning_file.py
├── Analysis.py
├── Visuals.py
└── README.md

- **Data_sets/**: Contains the original and cleaned datasets.
- **main.py**: The main script that orchestrates the data loading, cleaning, analysis, and visualization.
- **Loading_file.py**: Script for loading the dataset.
- **Cleaning_file.py**: Script for cleaning the dataset.
- **Analysis.py**: Script for performing various analyses on the dataset.
- **Visuals.py**: Script for generating visualizations from the data.
- **README.md**: This file, describing the project.

## Getting Started

### Prerequisites

To run this project, you will need the following Python libraries:

- pandas
- numpy
- matplotlib
- seaborn
- openpyxl

You can install these libraries using pip:

```bash
pip install pandas numpy matplotlib seaborn openpyxl