이번에는 티블 구조 형태로 변환해서 출력해 보겠습니다. as_tibble 함수로 iris를 티블 구조로 변환하여 tb에 담아 출력했습니다. as_tibble 함수는 데이터셋을 티블 구조로 변환합니다.
tb <- as_tibble(iris) # as_tibble(): 티블 구조로 변환하는 함수 tb # A tibble: 150 x 5 Sepal.Length Sepal.Width Petal.Length Petal.Width Species <dbl> <dbl> <dbl> <dbl> <fct> 1 5.1 3.5 1.4 0.2 setosa 2 4.9 3 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 3.6 1.4 0.2 setosa 6 5.4 3.9 1.7 0.4 setosa 7 4.6 3.4 1.4 0.3 setosa 8 5 3.4 1.5 0.2 setosa 9 4.4 2.9 1.4 0.2 setosa 10 4.9 3.1 1.5 0.1 setosa # ... with 140 more rows class(tb) [1] "tbl_df" "tbl" "data.frame"
* tibble 구조, 150행 5열을 가짐
* 열 이름
* 자료형이나 데이터 구조, fct는 팩터 구조, dbl은 double(실수)로 숫자형에 속합니다.
* 데이터 값
* 행이 140개 더 있습니다.
* 여기에서 tbl은 dplyr 패키지가 사용하는 테이블 형태의 클래스를 의미합니다. tbl_df는 (tbl을 상속받는) data.frame에서 파생한 하위 클래스입니다. 그냥 간단하게 tibble 클래스는 데이터 프레임이 변형된 데이터 구조(클래스)라고 생각하면 됩니다.