r to json 썸네일형 리스트형 [JRI] R Parsing data.frame to JSON R에서 제공하는 DataSet을 이용하여 JSON형태로 변환해보자. R에는 다양한 DataSet(data.frame 형태)이 내장되어있다.DataSet 목록은 아래의 명령어로 확인 가능하다. > library(help=datasets) iris DataSet의 일부를 head 메소드로 확인해보면 아래와 같다.> head(iris) Sepal.Length Sepal.Width Petal.Length Petal.Width Species 1 5.1 3.5 1.4 0.2 setosa 2 4.9 3.0 1.4 0.2 setosa 3 4.7 3.2 1.3 0.2 setosa 4 4.6 3.1 1.5 0.2 setosa 5 5.0 3.6 1.4 0.2 setosa 6 5.4 3.9 1.7 0.4 setosa 여러 D.. 더보기 이전 1 다음