[Development Record:: R] 2. Data Type
Data Type (데이터 타입)
# 숫자(numeric), 문자(character), 범주(factor),
# 논리(logical), 날짜(Date), 날짜/시간(POSIXct)
str() : 변수의 구조(타입과 내용) 확인,
class() : 변수의 타입 확인
📝 Data Type(데이터 타입) 예제
x1 <- 23L
str(x1) # int23
class(x1) # integer
x2 <- 22.3
str(x2) # num 22.3
class(x2) # numeric
x3 <- "Hello"
str(x3) # chr "Hello"
class(x3) # character
x4 <- factor(c("one", "two", "three"))
str(x4)
class(x4) # factor
x5 <- c("one", "two", "three")
str(x5) # chr [1:3] "one" "two" "three"
class(x5) # character
x6 <- as.Date("2020-12-16")
str(x6) # Date[1:1], format: "2020-12-16"
class(x6) # Date
x7 <- as.POSIXct("2020-12-16 15:32:40")
str(x7) # POSIXct[1:1], format: "2020-12-16 15:32:40"
class(x7) # "POSIXct" "POSIXt"
x8 <- 30 > 10
str(x8) # logi TRUE
class(x8) # "logical"
▶ 시스템 환경 함수
Sys.Date() # 날짜 확인, "2020-12-16"
Sys.time() # 날짜와 시간 확인,"2020-12-16 15:39:20 KST"
Sys.timezone() # 타임존 확인, "Asia/Seoul"
Sys.info() # 시스템의 정보 확인
Author And Source
이 문제에 관하여([Development Record:: R] 2. Data Type), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@yun003318/Development-Record-R-2.-Data-Type저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)