1

我有 Excel 电子表格中的数据,其中包含不同数量的工作表。我不想像其他地方解释的那样阅读所有工作表,而是在使用 readxl 包导入 R 时排除第一张工作表。使用包中的示例数据:

library("readxl")
path <- readxl_example("datasets.xls")
lapply(excel_sheets(path), read_excel, path = path)

如果我想阅读此数据集中除第一张表之外的所有内容,有没有办法做到这一点?

4

0 回答 0