[R] Excel 읽기/쓰기 Start

BioinformaticsAndMe






1. R xlsx 패키지 설치


: R에서 엑셀 데이터의 읽기/처리/쓰기 작업을 위해, 'xlsx' 패키지 설치

*참고로 엑셀 데이터를 처리하는 여러 R 패키지들이 존재 (xlsx, readxl, XLConnect 등)

# xlsx 패키지 install.packages("xlsx") library("xlsx")



2. Read an Excel file


: read.xlsx 함수를 사용하여, 엑셀 데이터 로딩

Expression_example.xlsx

# 예제 파일 경로 지정 후, 데이터 로딩 file <- 'Expression_example.xlsx' res <- read.xlsx(file, 1) # 첫번째 시트 읽기 res



3. Write data to an Excel file


: write.xlsx 함수를 사용하여, 엑셀 데이터 생성

# R 예제 데이터를 엑셀 형태로 파일 생성 write.xlsx(USArrests, file="myworkbook.xlsx",sheetName="USA Arrests")







#Reference

1) http://www.sthda.com/english/wiki/r-xlsx-package-a-quick-start-guide-to-manipulate-excel-files-in-r





[R] Excel 읽기/쓰기 End

BioinformaticsAndMe



'R' 카테고리의 다른 글

[R] 생존분석(Survival analysis)  (0) 2019.11.25
[R] 히스토그램(Histogram)  (0) 2019.11.18
[R] Merge  (0) 2019.10.30
[R] Heatmap 시각화  (4) 2019.10.24
[R] transform (데이터열생성 함수)  (0) 2019.10.17

+ Recent posts