Xl.Read.File 函数未读取所有行

问题描述 投票:0回答:1

我有一个用 Excel Worksheet 2003 保存的文件,我尝试在 R 中读取。 没有任何包或函数起作用,只有 excel.link 包中的

XL.Read.file
。 问题是该函数仅从 Excel 中读取最大否(1048575)。

library(excel.link)
df = xl.read.file('Date.xls',header=TRUE,xl.sheet='Date')

有人知道问题出在哪里吗?

谢谢你。

r excel excel-2003
1个回答
0
投票

我知道这已经过时了,但对于任何想看的人来说,请尝试添加两个参数:

  • top.left.cell
    = 标题行上表格的第一个单元格
  • xl.sheet
    = 您要阅读的工作表的名称
#example 
library(excel.link)
df <- xl.read.file('Date.xls', header=TRUE, xl.sheet='Date', top.left.cell = "A1", xl.sheet = 'sheet name')
© www.soinside.com 2019 - 2024. All rights reserved.