adding the underscores

This commit is contained in:
Jidong Xiao
2023-11-02 22:33:01 -04:00
parent 56970cb3ee
commit 5418f44811

View File

@@ -58,16 +58,16 @@ input1.json represents the json files, it stores all existing comments. Each lin
The line is enclosed with a pair of curly braces. And every line has these same fields: The line is enclosed with a pair of curly braces. And every line has these same fields:
- video id: youtube assign each video an id. - *video_id*: youtube assign each video an id.
- author: username of the author. - author: username of the author.
- comment id: youtube assign each comment an id. - *comment_id*: youtube assign each comment an id.
- like count: how many likes this comment gets. - *like_count*: how many likes this comment gets.
- reply count: how many comments are a reply to this comment. - *reply_count*: how many comments are a reply to this comment.
- is reply: is this a reply to an existing comment? If not, then it's a comment to the video; in other words, every comment, is either a reply to an existing comment (*is_reply* will be true), or is a comment to the original video (*is_reply* will be false). - *is_reply*: is this a reply to an existing comment? If not, then it's a comment to the video; in other words, every comment, is either a reply to an existing comment (*is_reply* will be true), or is a comment to the original video (*is_reply* will be false).
- parent comment id: if comment A is a reply to comment B, then we define comment B as the parent of comment A. - *parent_comment_id*: if comment A is a reply to comment B, then we define comment B as the parent of comment A.
- published date: when this comment was made, for all the new comments we are going to make this assignment, please set the published date to be "0 seconds ago". - *published_date*: when this comment was made, for all the new comments we are going to make this assignment, please set the published date to be "0 seconds ago".
- crawled date: when the comment data was collected, you won't really use this field in this assignment. - *crawled_date*: when the comment data was collected, you won't really use this field in this assignment.
- is video owner: indicates if this comment is made by the video owner. - *is_video_owner*: indicates if this comment is made by the video owner.
- comment: the actual comment. - comment: the actual comment.
Each field is a key-value pair. Each field is a key-value pair.