Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我readxl::read_xls()在R中使用。
readxl::read_xls()
我有一个 xls 文件,我需要读取的数据从 cell 开始J3。数据一直到 cell DX,但行数总是不同。
J3
DX
我想设置范围以从单元格读取我的 xls 文件,J3直到最后一次观察单元格DX。
有任何想法吗?
rangein 参数由read_xlscellranger 包处理,允许您对要读取的范围设置更一般的限制。在你的情况下:
range
read_xls
readxl::read_xls('./test.xls', range = cell_limits(c(3, 4), c(NA, 10)))
这将从D3to读取JX,其中X最后一行是数据。
D3
JX
X