notsahil commited on
Commit
ec5d017
·
verified ·
1 Parent(s): a7c8039

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +23 -1
README.md CHANGED
@@ -3,4 +3,26 @@ license: apache-2.0
3
  language:
4
  - en
5
  pretty_name: Hacker News Dataset
6
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3
  language:
4
  - en
5
  pretty_name: Hacker News Dataset
6
+ tags:
7
+ - hacker-news
8
+ - ycombinator
9
+ ---
10
+
11
+ ## Dataset Schema
12
+
13
+ | field name | type | description |
14
+ | ----------- | --------- | --------------------------------------------------------------------- |
15
+ | title | STRING | Story title |
16
+ | url | STRING | Story url |
17
+ | text | STRING | Story or comment text |
18
+ | dead | BOOLEAN | Is dead? |
19
+ | by | STRING | The username of the item's author. |
20
+ | score | INTEGER | Story score |
21
+ | time | INTEGER | Unix time |
22
+ | timestamp | TIMESTAMP | Timestamp for the unix time |
23
+ | type | STRING | type of details (comment, comment_ranking, poll, story, job, pollopt) |
24
+ | id | INTEGER | The item's unique id. |
25
+ | parent | INTEGER | Parent comment ID |
26
+ | descendants | INTEGER | Number of story or poll descendants |
27
+ | ranking | INTEGER | Comment ranking |
28
+ | deleted | BOOLEAN | Is deleted? |