- Objective
- Data Source
- Project Stages
- Design
- Development
- Testing & Validation
- Visualization
- Analysis & Insights
- Recommendations
- Conclusion
The Head of Marketing aims to identify top-performing YouTubers in 2024 for optimizing marketing campaigns.
Develop a Power BI dashboard offering real-time insights into:
- Subscriber growth trends
- Total views
- Video production frequency
- Engagement metrics
This will help drive data-driven decisions for influencer partnerships.
As a Head of Marketing, I require a data-driven dashboard to analyze YouTube channel metrics, ensuring optimal influencer selection for impactful marketing campaigns.
Comprehensive YouTube data for UK-based influencers in 2024, including:
- Channel names
- Total subscribers
- Aggregate views
- Number of uploaded videos
The dataset is sourced from Kaggle (access it here).
- Design & Planning
- Data Processing & Transformation
- Testing & Quality Assurance
- Visualization & Reporting
- Strategic Analysis & Recommendations
- Who are the top 10 YouTubers by subscriber count?
- Which channels post the highest volume of content?
- Which channels generate the highest views?
- Which channels maintain strong audience retention (views per video)?
- Which channels exhibit the highest engagement levels?
Visualizations include:
- Interactive Tables
- Scorecards
- Treemaps
- Bar Charts
Tool | Purpose |
---|---|
Excel | Initial Data Exploration |
SQL Server | Data Cleaning & Aggregation |
Power BI | Data Visualization & Reporting |
GitHub | Project Version Control & Documentation |
- Acquire and review raw data
- Conduct exploratory analysis in Excel
- Import data into SQL Server
- Clean and preprocess data via SQL queries
- Validate data integrity through testing
- Visualize insights in Power BI
- Document findings & publish results
Key observations:
- Some channel identifiers need extraction.
- Dataset contains foreign language entries requiring translation.
- Certain columns are redundant and need elimination.
The dataset is refined by:
- Retaining only relevant fields
- Ensuring correct data types
- Removing null or inconsistent values
Column Name | Data Type | Nullable |
---|---|---|
channel_name | VARCHAR | NO |
total_subscribers | INTEGER | NO |
total_views | INTEGER | NO |
total_videos | INTEGER | NO |
SELECT
SUBSTRING(NOMBRE, 1, CHARINDEX('@', NOMBRE) -1) AS channel_name,
total_subscribers,
total_views,
total_videos
FROM
youtube_data_from_python;
CREATE VIEW view_uk_youtubers_2024 AS
SELECT
CAST(SUBSTRING(NOMBRE, 1, CHARINDEX('@', NOMBRE) -1) AS VARCHAR(100)) AS channel_name,
total_subscribers,
total_views,
total_videos
FROM
youtube_data_from_python;
SELECT COUNT(*) AS total_rows FROM view_uk_youtubers_2024;
SELECT COUNT(*) AS column_count FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME = 'view_uk_youtubers_2024';
SELECT COLUMN_NAME, DATA_TYPE FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME = 'view_uk_youtubers_2024';
Total Subscribers (M) = SUM(view_uk_youtubers_2024[total_subscribers]) / 1000000
Total Views (B) = SUM(view_uk_youtubers_2024[total_views]) / 1000000000
Average Views per Video (M) = SUM(view_uk_youtubers_2024[total_views]) / SUM(view_uk_youtubers_2024[total_videos]) / 1000000
- Highest Subscribers: NoCopyrightSounds, DanTDM, Dan Rhodes
- Most Content Uploaded: GRM Daily, Manchester City, Yogscast
- Highest Total Views: DanTDM, Dan Rhodes, Mister Max
- Highest Engagement: Mark Ronson, Jessie J, Dua Lipa
- Dan Rhodes offers the best ROI ($1.07M per video).
- NoCopyrightSounds and DanTDM are strong long-term partners.
- Channels with lower engagement (GRM Daily, Manchester City) should be avoided.
- Dan Rhodes: $1.07M per video
- Mister Max: $1.28M per video
- DanTDM: $484K per video
- Initiate discussions with Dan Rhodes for strategic collaboration.
- Define campaign structures within budget constraints.
- Implement performance tracking and KPI-based evaluation.
- Optimize influencer selection based on evolving insights.
This project delivers a data-driven approach to identifying high-impact YouTube influencers for marketing campaigns. The recommended actions maximize ROI and engagement while mitigating risk.