我有一组要导入的 excel 文件R
。
这些文件包含我想忽略的隐藏数据——例如,根本不导入它,或者导入它时带有一个表明它被隐藏的标志,以便我可以删除它。
这些文件包含两种类型的隐藏数据:
- 完整的工作表被隐藏
- 工作表中的特定行被隐藏。
有没有办法识别excel中的数据何时隐藏?
现在我正在使用该gdata
包,但很高兴使用XLConnect
或其他包
示例代码:
library(gdata)
xlsfile <- "test.xls"
# grab all the sheet names.
# This is giving me both hidden & non-hidden sheets. I would like only the latter
sheets <- sheetNames(xlsfile)
# read in the xls file, by sheet
xlData <-
lapply(sheets, function(s)
read.xls(xlsfile, sheet=s, stringsAsFactors = FALSE))
如果需要,我可以创建一个虚拟xls
文件并发布它。