이번 글에서는 R에서 파일을 입/출력하는 방법에 대해 살펴보겠습니다. 우리는 보통 데이터를 다룰때 엑셀을 많이 쓰곤 합니다. 근데 이 데이터들을 R에서 일일이 입력해줄수 없으니 함수를 써야겠죠. 그래서 R에서 지원하는 함수들을 이용해 자료를 간단히 R에서의 데이터 프레임으로 전환시킬수 있습니다. # file # the name of the file which the data are to be read from. # Each row of the table appears as one line of the file. # If it does not contain an absolute path, # the file name is relative to the current working directory, getw..