使用R将Excel电子表格另存为.csv?

时间:2011-11-18 20:01:51

标签: excel r

将包含多个工作表的大型Excel电子表格转换为R中的.CSV文件的最简单方法是什么?

请注意,我测试了XLConnect和XLSX,发现我的Excel工作表导致崩溃。因此,我特意寻找不使用XLConnect或XLSX软件包的解决方案。

3 个答案:

答案 0 :(得分:9)

这是一个写出所有表格的循环:

require(gdata)
## install support for xlsx files
installXLSXsupport()
excelFile <- ("/full/path/to/excelFile.xlsx")
## note that the perl scripts that gdata uses do not cope well will tilde expansion
## on *nix machines. So use the full path. 
numSheets <- sheetCount(excelFile, verbose=TRUE)

for ( i in 1:numSheets) {
  mySheet <- read.xls(excelFile, sheet=i)
  write.csv(mySheet, file=paste(i, "csv", sep="."), row.names=FALSE)
}

答案 1 :(得分:5)

http://rwiki.sciviews.org/doku.php?id=tips:data-io:ms_windows

编辑:解决read.xlsx选项:

如果您运行Perl,则需要当前版本的gdata

require(gdata)
installXLSXsupport()   #now the example from help(read.xls)
    # load the third worksheet, skipping the first two non-data lines...
    if( 'XLSX' %in% xlsFormats() )  # if XLSX is supported..
      data <- read.xls(exampleFile2007, sheet="Sheet with initial text", skip=2)
 data
#-----------------------
   X       X.1 D E.  F  G Factor
1 NA  FirstRow 1 NA NA NA   Red 
2 NA SecondRow 2  1 NA NA Green 
3 NA  ThirdRow 3  2  1 NA   Red 
4 NA FourthRow 4  3  2  1 Black 
#------------------------
write.csv(data)

这是在Mac上完成的,直到这个问题我总是偶然发现在installXLSXsupport()阶段,因为我总是遇到错误。这次我从终端命令行启动了Perl,并在首次设置我的个人配置,在我的大陆上定义CPAN镜像后得到了成功,然后我离开了perl。

答案 2 :(得分:1)

基于readxl包更新了答案。

library("readxl")

#function to read all sheets of a workbook
read_excel_allsheets <- function(filename) {
  sheets <- readxl::excel_sheets(filename)
  x <-    lapply(sheets, function(X) readxl::read_excel(filename, sheet = X))
  names(x) <- sheets
  x
}

sheetnames <- read_excel_allsheets("excelFile.xlsx")
names(sheetnames)