Skip to content

Instantly share code, notes, and snippets.

@tattyamm
Created July 27, 2013 05:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tattyamm/6093872 to your computer and use it in GitHub Desktop.
Save tattyamm/6093872 to your computer and use it in GitHub Desktop.
ニコニコ動画コメント等データから、動画コメントを取り出す例 http://www.nii.ac.jp/cscenter/idr/nico/nico-apply.html
# 動画コメントを取り出す例
#install.packages("rjson")
library("rjson")
json_file <- "/ファイルの場所/sm57.dat"
thread<-file(json_file,"r")
for(i in 1:10000000){
line <- readLines(con=thread,1)
json_data <- fromJSON(line)
print(json_data$comment)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment