The Social World Of NFTs: A Reddit Dataset
The Intersection of Art and Blockchain
@kaggle.thedevastator_the_social_world_of_nfts_a_reddit_dataset
The Intersection of Art and Blockchain
@kaggle.thedevastator_the_social_world_of_nfts_a_reddit_dataset
By SocialGrep [source]
Cryptocurrency and blockchain technology have been shrouded in controversy since their inception. But what does the data say about this new and rapidly growing industry?
The Reddit NFT dataset contains all the posts and comments mentioning the term NFT in their title and body text. To preserve users' anonymity and to prevent targeted harassment, the data does not include usernames.
What can we learn from this dataset about the recent phenomenon of non-fungible tokens? How is this new technology being used, and what are people saying about it?
For more datasets, click here.
- 🚨 Your notebook can be here! 🚨!
This dataset can be used to study the recent phenomenon of non-fungible tokens, or NFTs. NFTs are a new type of cryptographic token that allows its user to own unique virtual objects via a mechanism of distributed consensus. This dataset contains all the posts and comments mentioning the term NFT in their title and body text respectively. The data can be used to study the popularity of NFTs, as well as the controversy surrounding them
- Analyzing the language used in posts and comments related to NFTs to better understand the general public's attitudes and beliefs about the technology.
- Using the score column to identify which topics are most popular among Reddit users discussing NFTs.
- Using the created_utc column to track how interest in NFTs has changed over time
If you use this dataset in your research, please credit the original authors.
License
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: the-reddit-nft-dataset-comments-sample.csv
| Column name | Description |
|---|---|
| type | The type of post or comment. (String) |
| subreddit.name | The name of the subreddit the post or comment was made in. (String) |
| subreddit.nsfw | Whether or not the subreddit is marked as NSFW. (Boolean) |
| created_utc | The timestamp of when the post or comment was created. (Integer) |
| permalink | The permalink of the post or comment. (String) |
| body | The body text of the post or comment. (String) |
| sentiment | The sentiment of the post or comment. (String) |
| score | The score of the post or comment. (Integer) |
File: the-reddit-nft-dataset-posts-sample.csv
| Column name | Description |
|---|---|
| type | The type of post or comment. (String) |
| subreddit.name | The name of the subreddit the post or comment was made in. (String) |
| subreddit.nsfw | Whether or not the subreddit is marked as NSFW. (Boolean) |
| created_utc | The timestamp of when the post or comment was created. (Integer) |
| permalink | The permalink of the post or comment. (String) |
| score | The score of the post or comment. (Integer) |
| domain | The domain of the post or comment. (String) |
| url | The URL of the post or comment. (String) |
| selftext | The selftext of the post or comment. (String) |
| title | The title of the post or comment. (String) |
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 the_reddit_nft_dataset_comments_sample (
"index" BIGINT,
"type" VARCHAR,
"id" VARCHAR,
"subreddit_id" VARCHAR,
"subreddit_name" VARCHAR,
"subreddit_nsfw" BOOLEAN,
"created_utc" BIGINT,
"permalink" VARCHAR,
"body" VARCHAR,
"sentiment" DOUBLE,
"score" BIGINT
);CREATE TABLE the_reddit_nft_dataset_posts_sample (
"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.