R, as.Date (날짜 변환) Start.
BioinformaticsAndMe
as.Date
: 날짜 type으로 conversion
#실습데이터
> weight <- c(65.4, 55, 380, 72.2, 51, NA)
> height <- c(170, 155, NA, 173, 161, 166)
> gender <- c("M", "F","M","M","F","F")
> testDate <- c("2013/09/01", "2013/09/01", "2013/09/05", "2013/09/14", "2013/10/11", "2013/10/26")
> patients <- data.frame( weight = weight, height=height, gender=gender, testDate=testDate)
#환자 데이터 날짜를 실제 date 형태로 계산하기
> patients
weight height gender testDate
1 65.4 170 M 2013/09/01
2 55.0 155 F 2013/09/01
3 380.0 NA M 2013/09/05
4 72.2 173 M 2013/09/14
5 51.0 161 F 2013/10/11
6 NA 166 F 2013/10/26
> patients$testDate <- as.Date(testDate)
> patients
R, as.Date (날짜 변환) End.
BioinformaticsAndMe
'R' 카테고리의 다른 글
if, else, else if, ifelse (R 조건문) (0) | 2019.09.16 |
---|---|
while, for (R 반복문) (0) | 2019.09.16 |
pathview (패스웨이 분석) (2) | 2019.05.22 |
R, 파일 입출력 (FILE I/O) (0) | 2018.09.11 |
R, T-test (R, T검정) (0) | 2018.08.29 |