Datasets:
Update README.md
Browse files
README.md
CHANGED
@@ -16,12 +16,14 @@ size_categories:
|
|
16 |
|
17 |
## Dataset Details
|
18 |
|
19 |
-
### Dataset Description
|
20 |
-
|
21 |
The Reddit Climate Comment dataset focuses on comments from subreddits intricately linked to discussions on climate change, energy, and specifically renewable energy. Utilizing the Reddit API, we extract insights from the top ~1000 posts in key subreddits, including "Climate," "Energy," "RenewableEnergy", and “ClimateChange”, providing a nuanced exploration of conversations surrounding these crucial environmental sustainability topics.
|
22 |
|
|
|
|
|
23 |
The dataset is centered around discussions related to clean energy and climate change, obtained through the Reddit API by extracting information from the top ~900 to ~1000 posts within specified subreddits and collected using a Python Library, Praw, on January 31th, 2024, code shown in Appendix. These subreddits include “Climate”, “Energy”, “RenewableEnergy”, and “ClimateChange”. The dataset collected 20 comments under each post. The selection of curated subreddit names is determined by assessing both the relevance of the subreddit to energy and climate change and the size of the subreddit community, measured by the number of Reddit users who have joined. In the dataset, under the “Climate” subreddit category, there are 14,003 comments (184k users in the community), while 10,465 comments under “ClimateChange” subreddit category (89k users in the community); “Energy” subreddit has 13,692 comments (181k users in the community), and the “RenewableEnergy” subreddit has 5,394 comments (124k users in the community). In total, there are 43,554 comments across all subreddit. During the data collection process, timestamps were converted from Unix timestamps (seconds since the epoch) in the raw data into a UTC datetime object.
|
24 |
|
|
|
|
|
25 |
- **Curated by:** Reddit users and the Reddit platform
|
26 |
- **Language(s):** English
|
27 |
- **License:** MIT
|
@@ -33,13 +35,16 @@ The dataset is centered around discussions related to clean energy and climate c
|
|
33 |
|
34 |
## Uses
|
35 |
|
36 |
-
|
37 |
|
38 |
### Direct Use
|
39 |
|
40 |
-
|
41 |
-
|
42 |
-
|
|
|
|
|
|
|
43 |
|
44 |
### Out-of-Scope Use
|
45 |
|
@@ -59,6 +64,7 @@ It's essential for users of the dataset to exercise caution, critically evaluate
|
|
59 |
|
60 |
The organized dataset is structured in a hierarchical array format to facilitate efficient navigation and analysis of comments within specific subreddits, post titles, and post IDs. Each element in the array represents a subreddit community, containing information about individual posts within that subreddit.
|
61 |
|
|
|
62 |
```json
|
63 |
{
|
64 |
"dataset": "Reddit Climate Comment",
|
@@ -81,6 +87,19 @@ The organized dataset is structured in a hierarchical array format to facilitate
|
|
81 |
]
|
82 |
}
|
83 |
```
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
84 |
|
85 |
## Dataset Creation
|
86 |
|
|
|
16 |
|
17 |
## Dataset Details
|
18 |
|
|
|
|
|
19 |
The Reddit Climate Comment dataset focuses on comments from subreddits intricately linked to discussions on climate change, energy, and specifically renewable energy. Utilizing the Reddit API, we extract insights from the top ~1000 posts in key subreddits, including "Climate," "Energy," "RenewableEnergy", and “ClimateChange”, providing a nuanced exploration of conversations surrounding these crucial environmental sustainability topics.
|
20 |
|
21 |
+
### Dataset Description
|
22 |
+
|
23 |
The dataset is centered around discussions related to clean energy and climate change, obtained through the Reddit API by extracting information from the top ~900 to ~1000 posts within specified subreddits and collected using a Python Library, Praw, on January 31th, 2024, code shown in Appendix. These subreddits include “Climate”, “Energy”, “RenewableEnergy”, and “ClimateChange”. The dataset collected 20 comments under each post. The selection of curated subreddit names is determined by assessing both the relevance of the subreddit to energy and climate change and the size of the subreddit community, measured by the number of Reddit users who have joined. In the dataset, under the “Climate” subreddit category, there are 14,003 comments (184k users in the community), while 10,465 comments under “ClimateChange” subreddit category (89k users in the community); “Energy” subreddit has 13,692 comments (181k users in the community), and the “RenewableEnergy” subreddit has 5,394 comments (124k users in the community). In total, there are 43,554 comments across all subreddit. During the data collection process, timestamps were converted from Unix timestamps (seconds since the epoch) in the raw data into a UTC datetime object.
|
24 |
|
25 |
+
Our dataset includes information from ~20 comments under each of the top 1000 posts, providing a detailed lens into user engagement and sentiment within these subreddits. Subreddit names are curated with consideration for relevance to climate and energy topics, and the number of users in a community. This ensures a diverse representation of opinions and perspectives. While the primary emphasis is on clean energy discussions, the inclusion of "Energy", "Climate", and “ClimateChange” subreddits introduces valuable comparative dimensions. "Energy" provides insights into the broader energy landscape, while "climate" and “climatechange” reflect overarching perspectives and attitudes towards sustainability subjects. The dataset, thus, serves as a comprehensive repository for exploring nuanced discussions on Reddit surrounding climate, energy, and renewable energy topics.
|
26 |
+
|
27 |
- **Curated by:** Reddit users and the Reddit platform
|
28 |
- **Language(s):** English
|
29 |
- **License:** MIT
|
|
|
35 |
|
36 |
## Uses
|
37 |
|
38 |
+
The Reddit Climate Comment dataset is intended to be used for various natural language processing (NLP) and text-based analyses related to discussions on climate change, energy, and renewable energy topics.
|
39 |
|
40 |
### Direct Use
|
41 |
|
42 |
+
1. Sentiment Analysis: determine the sentiment expressed in comments related to climate, energy, and renewable energy.
|
43 |
+
2. Topic Modeling: identify prevalent topics and themes within the discussions.
|
44 |
+
3. Keyword Extraction: extract keywords or phrases that frequently appear in the dataset to understand the most discussed concepts within climate, energy, and renewable energy discussions
|
45 |
+
4. User Engagement Analysis: explore user engagement metrics, such as upvotes and comment length, to discern patterns in community participation and preferences.
|
46 |
+
5. Comparative Analysis: conduct comparative analyses between discussions in subreddits focused on "energy", "renewable energy", "climate", and “climatechange”. Explore how conversations differ across these thematic areas.
|
47 |
+
6. Temporal Analysis: investigate how discussions evolve by analyzing temporal patterns. Identify trends, peak activity periods, and correlations with real-world events.
|
48 |
|
49 |
### Out-of-Scope Use
|
50 |
|
|
|
64 |
|
65 |
The organized dataset is structured in a hierarchical array format to facilitate efficient navigation and analysis of comments within specific subreddits, post titles, and post IDs. Each element in the array represents a subreddit community, containing information about individual posts within that subreddit.
|
66 |
|
67 |
+
This representation includes a sample post from the "climate" subreddit with two comments. Huggingface dataset users can adjust the data fields and content according to desired actual dataset structure. This format helps users understand the structure and content of the dataset in a standardized way, which is suitable for Hugging Face datasets.
|
68 |
```json
|
69 |
{
|
70 |
"dataset": "Reddit Climate Comment",
|
|
|
87 |
]
|
88 |
}
|
89 |
```
|
90 |
+
The dataset includes the following fields:
|
91 |
+
|
92 |
+
```json
|
93 |
+
Subreddit (String): represents the name of the subreddit community where discussions are taking place (e.g., "climate").
|
94 |
+
Posts (Array): contains information about individual posts within the subreddit.
|
95 |
+
PostID (Integer): original post identifier.
|
96 |
+
PostTitle (String): title of the Reddit post, summarizing the topic of discussion.
|
97 |
+
Comments (Array):contains individual comments associated with the post.
|
98 |
+
Author (String): username of the comment author.
|
99 |
+
CommentBody (String): the text content of the comment.
|
100 |
+
Timestamp (String): timestamp indicating when the comment was created (in UTC).
|
101 |
+
Upvotes (Integer): number of upvotes received for the comment.
|
102 |
+
```
|
103 |
|
104 |
## Dataset Creation
|
105 |
|