데이터 프레임을 JSON으로 변환 json 형식으로 변환하고 싶은 데이터 프레임이 있습니다. res1이라는 데이터 프레임: library(rjson) structure(list(id = c(1, 2, 3, 4, 5), value = structure(1:5, .Label = c("server1", "server2", "server3", "server4", "server5"), class = "factor")), .Names = c("id", "value"), row.names = c(NA, -5L), class = "data.frame") 할 때: toJSON(res1) 알겠네. {"id":[1,2,3,4,5],"value":["server1","server2","server3","server4","se..