R에서 세로 열 문자열을 한 줄로 된 문자열로 변경하는 예이다.
scan, paste0을 이용하면 쉽게 바꿀 수 있다.
category.txt 에 다음 내용의 파일이 존재한다.
airport
amusement_park
aquarium
art_gallery
bakery
bar
,,,
소스
scanned <- scan("category.txt", what="")
pasted <- paste0("\"", paste0(scanned, collapse="\",\""), "\"")
writeLines(text=pasted, "cc.txt")
결과 (cc.txt)
"airport","amusement_park","aquarium","art_gallery","bakery","bar",...
'R' 카테고리의 다른 글
[R] 여러 list를 data frame의 컬럼으로 합쳐 만들기 (0) | 2015.08.20 |
---|---|
[R] 함수 재정의 및 해제 (0) | 2015.08.20 |
[R] par() 함수 (0) | 2015.08.12 |
[R] RStudio를 특정 디렉토리에서 작업하기 (0) | 2015.08.12 |
[R] R에서 메모리 정리하기 (0) | 2015.08.12 |