One Million Reddit Questions
Million questions from reddit
@kaggle.thedevastator_one_million_redditors_what_makes_a_post_popular
Million questions from reddit
@kaggle.thedevastator_one_million_redditors_what_makes_a_post_popular
By SocialGrep [source]
Dataset of One Million Questions
What makes a popular question on Reddit? Can we learn anything about how to ask questions from Reddit? We present you with this dataset of one million questions from /r/AskReddit in order to help answer these questions. The questions are labelled with date of creation and score. With this dataset, we hope that you will be able to explore what makes a popular or good Reddit question
For more datasets, click here.
- 🚨 Your notebook can be here! 🚨!
This dataset comprises one million questions from /r/AskReddit, procured using SocialGrep.
The questions are labelled with date of creation and their score.
Use this dataset to analyze what makes a popular Reddit question
If you use this dataset in your research, please credit the original authors.
Data SourceLicense
License: CC0 1.0 Universal (CC0 1.0) - Public Domain Dedication
No Copyright - You can copy, modify, distribute and perform the work, even for commercial purposes, all without asking permission. See Other Information.
File: one-million-reddit-questions.csv
| Column name | Description |
|---|---|
| type | The type of post. (String) |
| subreddit.name | The name of the subreddit. (String) |
| subreddit.nsfw | Whether the subreddit is NSFW. (Boolean) |
| created_utc | The timestamp of the post in UTC. (Integer) |
| permalink | The permalink of the post. (String) |
| domain | The domain of the post. (String) |
| url | The URL of the post. (String) |
| selftext | The selftext of the post. (String) |
| title | The title of the post. (String) |
| score | The score of the post. (Integer) |
If you use this dataset in your research, please credit the original authors.
If you use this dataset in your research, please credit SocialGrep.
CREATE TABLE one_million_reddit_questions (
"index" BIGINT,
"type" VARCHAR,
"id" VARCHAR,
"subreddit_id" VARCHAR,
"subreddit_name" VARCHAR,
"subreddit_nsfw" BOOLEAN,
"created_utc" BIGINT,
"permalink" VARCHAR,
"domain" VARCHAR,
"url" VARCHAR,
"selftext" VARCHAR,
"title" VARCHAR,
"score" BIGINT
);Anyone who has the link will be able to view this.