pattern을 찾는 방법 grepl(pattern, text) -> True or False 의 logical output grep(pattern, text) -> text에서 pattern을 발견할 경우 그 인덱스를 알려줌 ex) Dates and Timeframes Sys.Date() => 오늘 날짜, class는 "Date" as.Date() => input을 Date class로 바꾸기 character였던 bday를 Date class로 바꾸기 %d # Date of the month (decimal number, 십진법의 정수) %m # month (decimal number) %b # month (abbreviated/약어 - Jan, Feb, Mar, ... ) %B # month (full name - January, February, March, ... ) %y # year (2 digits) %Y # year (4 digits) Date class 로 바뀌지 않...
#
grep
#
코딩
#
날짜변경
#
날짜넣기
#
strptime
#
r
#
POSIXlt
#
POSIXct
#
grepl
#
패턴찾기