R 프로그래밍 기초 #4. 1. 파일 불러오기 #1. 워킹디렉토리 설정 #파일명에 '한글'이나 '빈칸' 있으면 오류발생할 수 있음! getwd() setwd("/Users/sohyun/Desktop/R_project") getwd() #2. 파일 불러오기 #맥에서 파일 불러올 때, fileEncoding = "euc-kr" 필요) df csv파일 #read.table() -> 테이블 #install.packages("readxl") -> 엑셀파일 읽어와야하는 경우 설치 #library(readxl) #read_excel(), read_xls(), read_xlsx() -> 엑셀불러오는 함수 3가지 • 워킹디렉토리 설정 getwd() : 확인 setwd() : 설정 • 파일 불러오기 - csv: read...