Update README.md
Browse files
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? |
|