2014년 11월 19일 수요일

R gsub() : 원하지 않는 내용 걸러내기

R gsub()

Usage : 
gsub(pattern, replacement, x, ignore.case = FALSE, perl = FALSE,
     fixed = FALSE, useBytes = FALSE)

gsub("변경전 글자","변경후 글자",원본데이터)

> gsub("\\d+", "", txt) #숫자제거
> gsub("\\.", "", txt) #점(.) 제거

댓글 없음 :

댓글 쓰기