Reddit Data Huge
Dataset containing Reddit Posts and Comments from various different subreddits.
@kaggle.prakharrathi25_reddit_data_huge
Dataset containing Reddit Posts and Comments from various different subreddits.
@kaggle.prakharrathi25_reddit_data_huge
Reddit is a collection of forums where people can share news and content as a thread or comment on other people’s posts. Reddit is broken up into more than a million communities known as “subreddits,” each of which covers a different topic. The name of a subreddit begins with /r/, which is part of the URLs that Reddit uses. For example, /r/nba is a subreddit where people talk about the National Basketball Association, while /r/boardgames is a subreddit for people to discuss board games.
In this dataset, I have added data from many different subreddits. This will act as an NLP gold mine for Social Media Analysis. This can help people understand what the youth is talking about.
I have collected it on my own using this article.
CREATE TABLE student_affairs (
"id" VARCHAR,
"title" VARCHAR,
"body" VARCHAR,
"subreddit" VARCHAR,
"upvotes" BIGINT,
"url" VARCHAR,
"is_original" BOOLEAN,
"flair" VARCHAR,
"num_comments" BIGINT,
"comments" VARCHAR,
"creation_date" TIMESTAMP
);CREATE TABLE suicidewatch_data (
"unnamed_0" BIGINT -- Unnamed: 0,
"id" VARCHAR,
"is_original" BOOLEAN,
"flair" VARCHAR,
"num_comments" BIGINT,
"title" VARCHAR,
"subreddit" VARCHAR,
"body" VARCHAR,
"url" VARCHAR,
"upvotes" BIGINT,
"comments" VARCHAR,
"creation_date" TIMESTAMP
);CREATE TABLE teenagers (
"unnamed_0" BIGINT -- Unnamed: 0,
"id" VARCHAR,
"is_original" BOOLEAN,
"flair" VARCHAR,
"num_comments" BIGINT,
"title" VARCHAR,
"subreddit" VARCHAR,
"body" VARCHAR,
"url" VARCHAR,
"upvotes" BIGINT,
"comments" VARCHAR,
"creation_date" TIMESTAMP
);CREATE TABLE whatsbotheringyou_reddit_data (
"unnamed_0" BIGINT -- Unnamed: 0,
"id" VARCHAR,
"is_original" BOOLEAN,
"flair" VARCHAR,
"num_comments" BIGINT,
"title" VARCHAR,
"subreddit" VARCHAR,
"body" VARCHAR,
"url" VARCHAR,
"upvotes" BIGINT,
"comments" VARCHAR,
"creation_date" TIMESTAMP
);CREATE TABLE youthandgov_data (
"unnamed_0" BIGINT -- Unnamed: 0,
"id" VARCHAR,
"is_original" BOOLEAN,
"flair" VARCHAR,
"num_comments" BIGINT,
"title" VARCHAR,
"subreddit" VARCHAR,
"body" VARCHAR,
"url" VARCHAR,
"upvotes" BIGINT,
"comments" VARCHAR,
"creation_date" TIMESTAMP
);CREATE TABLE youthknows_data (
"unnamed_0" BIGINT -- Unnamed: 0,
"id" VARCHAR,
"is_original" BOOLEAN,
"flair" VARCHAR,
"num_comments" BIGINT,
"title" VARCHAR,
"subreddit" VARCHAR,
"body" VARCHAR,
"url" VARCHAR,
"upvotes" BIGINT,
"comments" VARCHAR,
"creation_date" TIMESTAMP
);CREATE TABLE youthrights_data (
"unnamed_0" BIGINT -- Unnamed: 0,
"id" VARCHAR,
"is_original" BOOLEAN,
"flair" VARCHAR,
"num_comments" BIGINT,
"title" VARCHAR,
"subreddit" VARCHAR,
"body" VARCHAR,
"url" VARCHAR,
"upvotes" BIGINT,
"comments" VARCHAR,
"creation_date" TIMESTAMP
);Anyone who has the link will be able to view this.