## 데이터 불러오기 # R 자체 있는 데이터셋 가져오기 # See the data already we have help(package='datasets') # see the list of dataset R has data() # see the list of data currently loaded from current environment data(package='ggplot2') # see the list of dataset in the package named ggplot2 # readxl 패캐지 설치 및 라이브러리 불러오기 install.packages("readxl") library(readxl) # 데이터 경로 설정 setwd("/Users/seohyeonjeong/workspaceR/Hell..