더북(TheBook)

▪︎ write_excel( ) 함수로 엑셀 파일 내보내기

이번에는 write_excel() 함수를 사용하여 엑셀 파일로 내보내겠습니다. read_excel() 함수 때와 마찬가지로 엑셀 파일로 내보내려면 먼저 패키지를 설치해야 합니다. writexl 패키지를 설치하고 로드합니다.

> install.packages("writexl")    # 패키지 설치
WARNING: Rtools is required to build R packages but is not currently installed. Please download and install the appropriate version of Rtools before proceeding
> library(writexl)               # 패키지 로딩

 

앞서 만든 reservation_r_excel 데이터 프레임 변수를 excel_output.xlsx라는 파일 이름으로 내보내겠습니다.

> write_xlsx(reservation_r_excel, "excel_output.xlsx")     # 엑셀 파일로 내보냄

 

워킹 디렉터리(C:\R\practice_project)를 확인해 보면 excel_output.xlsx 파일이 만들어진 것을 확인할 수 있습니다.

 

그림 6-26 | 만들어진 excel_output.xlsx 파일

신간 소식 구독하기
뉴스레터에 가입하시고 이메일로 신간 소식을 받아 보세요.