Baselight

YouTubers' Popularity Dataset

YouTube Popularity statistics

@kaggle.balaka18_youtubers_popularity_dataset

Loading...
Loading...

About this Dataset

YouTubers' Popularity Dataset

Introduction

This is dataset of the Most popular, most flopping YouTubers across the world, irrespective of the genre of their videos. These have been extracted from the Social Blade website.

About the Dataset

What is Social Blade ?
Social Blade tracks user statistics for YouTube, Twitch, Instagram, and Twitter. You can get a deeper understanding of user growth and trends by utilizing Social Blade. Social Blade gives all users access to their public database which, using advanced technology, is able to provide users with global analytics for any content creator, live streamer, or brand.

Website : https://socialblade.com/

There are 3 datasets

A. Dataset 1 : gross_500.csv - The worst 500 YouTubers.

  1. Rank - Rank of the channel.
  2. Ch_name - Channel name.
  3. Upload - No. of uploads.
  4. Subscriptions - Count of subscribers.
  5. Viewers - Total number of viewers.

A. Dataset 2 : top_500.csv - The most popular 500 YouTubers.

  1. Rank - Rank of the channel.
  2. Grade - Grade assigned (A++, A+, A)
  3. Ch_name - Channel name.
  4. Upload - No. of uploads.
  5. Subscriptions - Count of subscribers.
  6. Viewers - Total number of viewers.

A. Dataset 3 : usa_ top_500.csv - The most popular 500 YouTubers in USA.

  1. Rank - Rank of the channel.
  2. Grade - Grade assigned (A++, A+, A)
  3. Ch_name - Channel name.
  4. Upload - No. of uploads.
  5. Subscriptions - Count of subscribers.
  6. Viewers - Total number of viewers.

Tables

Top 500

@kaggle.balaka18_youtubers_popularity_dataset.top_500
  • 26.31 KB
  • 500 rows
  • 6 columns
Loading...

CREATE TABLE top_500 (
  "rank" VARCHAR,
  "grade" VARCHAR,
  "ch_name" VARCHAR,
  "uploads" DOUBLE,
  "subscriptions" VARCHAR,
  "views" VARCHAR
);

Usa Top 500

@kaggle.balaka18_youtubers_popularity_dataset.usa_top_500
  • 14.03 KB
  • 250 rows
  • 6 columns
Loading...

CREATE TABLE usa_top_500 (
  "rank" VARCHAR,
  "grade" VARCHAR,
  "ch_name" VARCHAR,
  "uploads" BIGINT,
  "subscriptions" VARCHAR,
  "views" BIGINT
);

Gross 500

@kaggle.balaka18_youtubers_popularity_dataset.gross_500
  • 22.88 KB
  • 500 rows
  • 5 columns
Loading...

CREATE TABLE gross_500 (
  "rank" VARCHAR,
  "ch_name" VARCHAR,
  "uploads" DOUBLE,
  "subscriptions" VARCHAR,
  "views" VARCHAR
);

Share link

Anyone who has the link will be able to view this.