# RData 파일 활용
# CSV 파일 불러오기
df_csv_exam <- read.csv("d:/easy_r/sample_data/score.csv", stringsAsFactors = F)
df_csv_exam
# RData 파일로 저장
save(df_csv_exam, file="d:/easy_r/sample_data/score.rda")
# 데이터 프레임 삭제
rm(df_csv_exam)
df_csv_exam
# RData 불러오기
load("d:/easy_r/sample_data/score.rda")
df_csv_exam
'나 어제 배웠다 > R Studio' 카테고리의 다른 글
변수명(컬럼) 바꾸기 (0) | 2018.05.04 |
---|---|
데이터 분석 기본 함수 (0) | 2018.05.04 |
외부데이터 이용하기 - CSV (0) | 2018.05.03 |
외부데이터 이용하기 - 엑셀 (0) | 2018.05.03 |
데이터 프레임 테스트 (0) | 2018.05.03 |