R 자료형 숫자형 숫자는 기본값은 double numeric double(실수) ,integer (자연수)를 포함한다. 2L은 integer(숫자L을 하면 integer로 저장하라는 의미) 2.5 , NaN, 3L, 0 complex 복소수 eg. 3i is.double(0.5) # [1] TRUE as.double(1) #[1] 1 typeof( as.double(1) ) #[1] "double" as.integer(1.6) #[1] 1 is.numeric(2e2) #[1] TRUE as.numeric(c(TRUE,FALSE)) #더블 타입 #[1] 1 0 is.complex(3i) [1] TRUE 로지컬 Logical은 TRUE, FALSE 와 같은 boolean 값 eg.TRUE, FALSE, NA..