Baselight

Netflix Userbase Dataset

Sample Netflix User Data: Subscription Types, Revenue, User Details, and Activit

@kaggle.arnavsmayan_netflix_userbase_dataset

Netflix Userbase
@kaggle.arnavsmayan_netflix_userbase_dataset.netflix_userbase

  • 30.13 KB
  • 2500 rows
  • 10 columns
user_id

User ID

subscription_type

Subscription Type

monthly_revenue

Monthly Revenue

join_date

Join Date

last_payment_date

Last Payment Date

country

Country

age

Age

gender

Gender

device

Device

plan_duration

Plan Duration

1Basic1015-01-2210-06-23United States28MaleSmartphone1 Month
2Premium1505-09-2122-06-23Canada35FemaleTablet1 Month
3Standard1228-02-2327-06-23United Kingdom42MaleSmart TV1 Month
4Standard1210-07-2226-06-23Australia51FemaleLaptop1 Month
5Basic1001-05-2328-06-23Germany33MaleSmartphone1 Month
6Premium1518-03-2227-06-23France29FemaleSmart TV1 Month
7Standard1209-12-2125-06-23Brazil46MaleTablet1 Month
8Basic1002-04-2324-06-23Mexico39FemaleLaptop1 Month
9Standard1220-10-2223-06-23Spain37MaleSmartphone1 Month
10Premium1507-01-2322-06-23Italy44FemaleSmart TV1 Month

CREATE TABLE netflix_userbase (
  "user_id" BIGINT,
  "subscription_type" VARCHAR,
  "monthly_revenue" BIGINT,
  "join_date" VARCHAR,
  "last_payment_date" VARCHAR,
  "country" VARCHAR,
  "age" BIGINT,
  "gender" VARCHAR,
  "device" VARCHAR,
  "plan_duration" VARCHAR
);

Share link

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