R에서 데이터를 txt, csv 로 저장하는 방법
R에서 데이터를 txt, csv 로 저장하는 방법 먼저 데이터를 하나 만들어봅시다. num=c(1,2,3)char=c("a","b","c")log=c(TRUE,TRUE,FALSE) mydf=data.frame(num,char,log) > mydf num char log1 1 a TRUE2 2 b TRUE3 3 c FALSE txt 형태로 저장해봅시다. 저장은 working directory에 됩니다. working directory를 확인합시다. >getwd()"C:/Users/hi/Documents" 원하는 경로를 working directory로 지정합니다. > setwd("C:/Users/Public") 경로가 맞게 지정되었나 확인합니다. > getwd()[1] "C:/Users/Public" 이제..
2019. 12. 21.