R中是否有任何方法可以导入xlsb excel文件的列表或工作表数量?我知道 xlsx (excel_sheets) 有类似的功能,但它不适用于 xlsb。
问问题
68 次
1 回答
0
使用 { readxlsbdebug
} 包,您可以使用工作簿中的任何工作表(参数处的标签或索引sheet
)或命名对象(参数处)来使用其主要函数的参数来制作“技巧” range
。
library(readxlsb)
src_path <- "directory/file.xlsb" # your filepath
df <- readxlsb::read_xlsb(
src_path,
sheet = 1, # got 1st worksheet, e.g.
debug = TRUE
)
sheets <- df$env$sheets
# number of worksheets
print(length(sheets))
# their names
print(sheets$Name)
于 2021-11-18T18:53:20.930 回答