mo-mittal commited on
Commit
9832026
1 Parent(s): e2bf408

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +35 -22
README.md CHANGED
@@ -1,3 +1,15 @@
 
 
 
 
 
 
 
 
 
 
 
 
1
  # Reddit Political Discourse Dataset
2
 
3
  ## Data Source
@@ -16,27 +28,28 @@ The dataset comprises the top posts from the selected subreddits for each year s
16
 
17
  Each row in the dataset represents a single post and includes the following columns:
18
 
19
- - Author
20
- - Created UTC
21
- - Domain
22
- - Title
23
- - Selftext
24
- - Subreddit
25
- - Score
26
- - Number of Comments
27
- - Ups
28
- - Downs
29
- - Permalink
30
- - Is Self
31
- - URL
32
- - Subreddit Subscribers
33
- - Upvote Ratio
34
- - Is Original Content
35
- - Media
36
- - Selftext HTML
37
- - Author Flair Text
38
- - Link Flair Text
39
- - Image Text (generated feature, explained below)
 
40
 
41
  ## URL Content Processing
42
 
@@ -64,4 +77,4 @@ The dataset is a subset of top posts and does not represent the entirety of post
64
 
65
  ## Changelog
66
 
67
- ## Contact Information
 
1
+ ---
2
+ language:
3
+ - en
4
+ tags:
5
+ - politics
6
+ - reddit
7
+ - united states
8
+ - image to text
9
+ pretty_name: US politics subreddit data
10
+ size_categories:
11
+ - 1K<n<10K
12
+ ---
13
  # Reddit Political Discourse Dataset
14
 
15
  ## Data Source
 
28
 
29
  Each row in the dataset represents a single post and includes the following columns:
30
 
31
+ - Author: The username of the individual who submitted the post.
32
+ - Created UTC: The date and time when the post was created, typically represented as a UNIX timestamp and can be converted to a more readable datetime object.
33
+ - Domain: The internet domain of the linked content in the post. For example, i.imgur.com for images hosted on Imgur. For self-posts, this might just point to the subreddit domain.
34
+ - Title: The title of the Reddit post, as specified by the author.
35
+ - Selftext: The body text of the post. For link posts, this is often empty, whereas for text (self) posts, this contains the post's content.
36
+ - Subreddit: The name of the subreddit where the post was submitted.
37
+ - Score: The net score of the post, calculated as the difference between the number of upvotes and downvotes.
38
+ - Number of Comments: The total count of comments made on the post.
39
+ - Ups: The number of upvotes the post has received. Note that Reddit may fuzz the actual numbers of upvotes and downvotes.
40
+ - Downs: The number of downvotes the post has received. As with upvotes, the exact count may be fuzzed by Reddit.
41
+ - Permalink: A relative URL to the Reddit post. This can be appended to https://www.reddit.com to form the complete URL.
42
+ - Is Self: A boolean indicating whether the post is a self-post (text post) or a link post. Self-posts contain text content, while link posts link out to external content.
43
+ - URL: The direct URL to the linked content for link posts. For self-posts, this may point to the Reddit post itself.
44
+ - Subreddit Subscribers: The number of subscribers to the subreddit at the time of the post. This gives an idea of the subreddit's size.
45
+ - Upvote Ratio: The ratio of upvotes to total votes (upvotes plus downvotes) the post has received.
46
+ - Is Original Content (OC): A boolean indicating whether the post has been marked as original content by the author.
47
+ - Media: Information or metadata about any media associated with the post, such as videos or images. This can vary widely in format depending on the post and media type.
48
+ - Selftext HTML: The HTML version of the selftext, allowing for embedded formatting and links. This may be useful for rendering the post's content as it appears on Reddit.
49
+ - Author Flair Text: Text of the flair attached to the author's username in the context of the subreddit. Flairs can denote specific roles, achievements, or statuses within the subreddit community.
50
+ - Link Flair Text: The text of the flair attached to the post itself. Subreddits use link flairs to categorize posts, indicate post status, or convey other information.
51
+ - Image (PIL object): For datasets including image analysis, this could be a Python Imaging Library (PIL) object representing an image associated with the post. This allows for direct manipulation and analysis of post images.
52
+ - Image Text: A generated feature that might represent text extracted from an associated post image using techniques like Optical Character Recognition (OCR). This can provide additional context or content for analysis, especially for image-heavy posts.
53
 
54
  ## URL Content Processing
55
 
 
77
 
78
  ## Changelog
79
 
80
+ ## Contact Information