This question already has answers here:
How to open an .xlsb file in R?

(5 个回答)


3年前关闭。




我正在尝试从 xlsb 工作簿中将范围读入数据框中。我可以用 R 中的 xlsx 包来做到这一点吗?如果没有,有没有人知道一种方法?

最佳答案

查看 excel.linkhere 。它允许您像这样轻松地写入/读取数据:

df<-xl[a1:b2] # if the file is open

或者
df<-xl.read.file('filename.xlsb',header=TRUE, top.left.cell="A1") # if the file isn't open

关于r - 如何读取 xlsb 文件?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/33321505/

10-10 09:58