Reddit: /r/pokemon
Exploring Post Popularity, User Engagement and Topic Disscussion
@kaggle.thedevastator_uncovering_popular_pokemon_topics_and_user_inter
Exploring Post Popularity, User Engagement and Topic Disscussion
@kaggle.thedevastator_uncovering_popular_pokemon_topics_and_user_inter
By Reddit [source]
This Kaggle dataset provides a unique opportunity to explore the ongoing conversations and discussions of the popular Pokémon franchise across Reddit communities. It contains over a thousand entries compiled from posts and comments made by avid Pokémon fans, providing valuable insights into post popularity, user engagement, and topic discussion. With these comprehensive data points including post title, score, post ID link URL, number of comments and date & time created along with body text and timestamp – powerful analysis can be conducted to assess how trends in Pokémon-related activities are evolving over time. So why not dive deep into this fascinating world of Poké-interactions? Follow us as we navigate through the wide range of interesting topics being discussed on Reddit about this legendary franchise!
For more datasets, click here.
- 🚨 Your notebook can be here! 🚨!
This dataset contains over a thousand entries of user conversations related to the Pokémon community posted and commented on Reddit. By using this dataset, you can explore the popularity of Pokémon related topics, the level of user engagement, and how user interactions shape the discussion around each topic.
To do so, you’ll want to focus on columns such as title, score, url, comms_num (number of comments on a post), created (date and time when post was created) and timestamp.
For starters you can start by looking at how many posts have been made about certain topics by using “title” column as a keyword search bar – e.g., ‘Magikarp’ or ‘Team Rocket’ – to see just how many posts have been about them in total. With this data in mind, you could consider what makes popular posts become popular and look at the number of upvotes from users (stored in “score”)– i.e., what posts caught people's attention? Beyond upvotes however is downvotes - can these be taken into account when it comes to gauging popularity? One could also take into consideration user engagement by looking at comms_num as it contains information regarding number of comments left for each post - does an increase in comments lead to an increase in upvotes?
Additionally one could examine how posts were communicated with users by reading into body texts stored under 'body'. Through this information users can create insights into overall discussion per topic: are they conversational or argumentative? Are there underlying regional trends taking place among commenters who place emphasis on different elements regarding their pokemon-related discussions?
This opens up possibilities for further investigations into understanding pokemon-related phenomena through Reddit discussion; finding out what makes certain topics prevalent while others stay obscure; seeing where our World Regions lay within certain conversations; all while understanding specific nuances within conversation trees between commenters!
- Analyzing the influence of post upvotes in user engagement and conversation outcomes
- Investigating the frequency of topics discussed in Pokémon related conversations
- Examining the correlation between post score and number of comments on each post
If you use this dataset in your research, please credit the original authors.
Data Source
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: pokemon.csv
Column name | Description |
---|---|
title | The title of the post. (String) |
score | The number of upvotes the post has received. (Integer) |
url | The URL of the post. (String) |
comms_num | The number of comments the post has received. (Integer) |
created | The date and time the post was created. (DateTime) |
body | The body text of the post. (String) |
timestamp | The timestamp 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 Reddit.
CREATE TABLE pokemon (
"title" VARCHAR,
"score" BIGINT,
"id" VARCHAR,
"url" VARCHAR,
"comms_num" BIGINT,
"created" DOUBLE,
"body" VARCHAR,
"timestamp" TIMESTAMP
);
Anyone who has the link will be able to view this.