cathw commited on
Commit
b29b66c
1 Parent(s): 4a68483

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +24 -5
README.md CHANGED
@@ -57,9 +57,30 @@ It's essential for users of the dataset to exercise caution, critically evaluate
57
 
58
  ## Dataset Structure
59
 
60
- <!-- This section provides a description of the dataset fields, and additional information about the dataset structure such as criteria used to create the splits, relationships between data points, etc. -->
61
-
62
- [More Information Needed]
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
63
 
64
  ## Dataset Creation
65
 
@@ -67,8 +88,6 @@ It's essential for users of the dataset to exercise caution, critically evaluate
67
 
68
  The inclusion of the term "energy" in addition to subreddits focused on environment sustainability allows for a more comprehensive representation of discussions. While the primary focus revolves around clean energy topics, the inclusion of a broader spectrum such as "energy" captures a diverse array of discussions related to the energy sector at large, and facilitates a nuanced understanding of how conversations around clean energy compare and potentially contrast with discussions on energy more broadly. By encompassing both clean energy and general energy discussions, the dataset enables researchers and analysts to discern trends, sentiments, and engagement levels in each domain. This comparative approach enhances the dataset's utility, providing a holistic view of the Reddit community's dialogue on energy-related topics. The dataset's inclusion of the subreddit "climate" and “climatechange” introduces another layer of comparison. While "energy" and "renewable energy" provide detailed insights into people's opinions, "climate" and “climatechange” serves as a reflection of the community's overall perspectives and attitudes toward the topic in general. This multi-perspective approach enriches the dataset, enabling a more thorough examination of the diverse facets and opinions within the Reddit community's discourse on energy and climate change related subjects.
69
 
70
- [More Information Needed]
71
-
72
  ### Source Data
73
 
74
  The source data for this dataset comprises comments contributed by Reddit users participating in discussions on climate change, energy, and renewable energy topics within designated subreddits. These subreddits include "Climate," "Energy," "RenewableEnergy", and “ClimateChange”. The comments were extracted from the top posts within these subreddits using the Reddit API.
 
57
 
58
  ## Dataset Structure
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",
65
+ "subreddit": "climate",
66
+ "post_id": 1,
67
+ "post_title": "Example Post Title 1",
68
+ "comments": [
69
+ {
70
+ "author": "Author Name",
71
+ "comment_body": "This is a sample comment.",
72
+ "timestamp": "2024-01-31 12:34:56",
73
+ "upvotes": 10
74
+ },
75
+ {
76
+ "author": "Another Author",
77
+ "comment_body": "This is another sample comment.",
78
+ "timestamp": "2024-01-31 13:45:32",
79
+ "upvotes": 5
80
+ }
81
+ ]
82
+ }
83
+ ```
84
 
85
  ## Dataset Creation
86
 
 
88
 
89
  The inclusion of the term "energy" in addition to subreddits focused on environment sustainability allows for a more comprehensive representation of discussions. While the primary focus revolves around clean energy topics, the inclusion of a broader spectrum such as "energy" captures a diverse array of discussions related to the energy sector at large, and facilitates a nuanced understanding of how conversations around clean energy compare and potentially contrast with discussions on energy more broadly. By encompassing both clean energy and general energy discussions, the dataset enables researchers and analysts to discern trends, sentiments, and engagement levels in each domain. This comparative approach enhances the dataset's utility, providing a holistic view of the Reddit community's dialogue on energy-related topics. The dataset's inclusion of the subreddit "climate" and “climatechange” introduces another layer of comparison. While "energy" and "renewable energy" provide detailed insights into people's opinions, "climate" and “climatechange” serves as a reflection of the community's overall perspectives and attitudes toward the topic in general. This multi-perspective approach enriches the dataset, enabling a more thorough examination of the diverse facets and opinions within the Reddit community's discourse on energy and climate change related subjects.
90
 
 
 
91
  ### Source Data
92
 
93
  The source data for this dataset comprises comments contributed by Reddit users participating in discussions on climate change, energy, and renewable energy topics within designated subreddits. These subreddits include "Climate," "Energy," "RenewableEnergy", and “ClimateChange”. The comments were extracted from the top posts within these subreddits using the Reddit API.