File size: 1,729 Bytes
992bd56
 
 
 
 
ec5d017
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
---
license: apache-2.0
language:
- en
pretty_name: Hacker News Dataset
tags:
- hacker-news
- ycombinator
---

## Dataset Schema

| field name  | type      | description                                                           |
| ----------- | --------- | --------------------------------------------------------------------- |
| title       | STRING    | Story title                                                           |
| url         | STRING    | Story url                                                             |
| text        | STRING    | Story or comment text                                                 |
| dead        | BOOLEAN   | Is dead?                                                              |
| by          | STRING    | The username of the item's author.                                    |
| score       | INTEGER   | Story score                                                           |
| time        | INTEGER   | Unix time                                                             |
| timestamp   | TIMESTAMP | Timestamp for the unix time                                           |
| type        | STRING    | type of details (comment, comment_ranking, poll, story, job, pollopt) |
| id          | INTEGER   | The item's unique id.                                                 |
| parent      | INTEGER   | Parent comment ID                                                     |
| descendants | INTEGER   | Number of story or poll descendants                                   |
| ranking     | INTEGER   | Comment ranking                                                       |
| deleted     | BOOLEAN   | Is deleted?                                                           |