TED Talks Web-scraped Dataset
Dataset to explore TED Talks
@kaggle.jeniagerasimov_ted_talks_info_dataset
Dataset to explore TED Talks
@kaggle.jeniagerasimov_ted_talks_info_dataset
TED is a nonprofit devoted to spreading ideas, usually in the form of short, powerful talks (18 minutes or less). TED began in 1984 as a conference where Technology, Entertainment and Design converged, and today covers almost all topics — from science to business to global issues — in more than 100 languages. Meanwhile, independently run TEDx events help share ideas in communities around the world.
I enjoy TED talks a lot, they contain important life lessons and often motivate me. So I decided to collect data to analyze it.
CREATE TABLE talks_info (
"n__id" BIGINT -- Id,
"duration" BIGINT,
"event" VARCHAR,
"likes" VARCHAR,
"page_url" VARCHAR,
"published_date" TIMESTAMP,
"recorded_date" TIMESTAMP,
"related_videos" VARCHAR,
"speakers" VARCHAR,
"subtitle_languages" VARCHAR,
"summary" VARCHAR,
"title" VARCHAR,
"topics" VARCHAR,
"transcript" VARCHAR,
"views" BIGINT,
"youtube_video_code" VARCHAR
);Anyone who has the link will be able to view this.