Top Rated TV Shows
What is everyone watching on TV? A list of top-rated TV shows worldwide.
@kaggle.titassaha_top_rated_tv_shows
What is everyone watching on TV? A list of top-rated TV shows worldwide.
@kaggle.titassaha_top_rated_tv_shows
Hi, this is my first dataset. Hope you have fun analyzing it !
first_air_date - The date when the show was first aired on television
origin_country - The country where the show was created / originates from
original_language - The original language of the show
name - Name of the show in English. Note that names in original language are not included in this dataset.
popularity - A metric that measures how popular a TV show is based on consumer views
vote_average - Average of the total number of votes the show received
vote_count - The number of votes the show received
overview - A brief description of the show
CREATE TABLE data_tv (
"first_air_date" TIMESTAMP,
"origin_country" VARCHAR,
"original_language" VARCHAR,
"name" VARCHAR,
"popularity" DOUBLE,
"vote_average" DOUBLE,
"vote_count" BIGINT,
"overview" VARCHAR
);Anyone who has the link will be able to view this.