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.
Read_excel()函数自动跳过前导空行。有没有办法避免这种情况,因为我需要 R 中的 row.names 与 excel 中的行号对应?
Read_excel()
当我不知道 read_excel 跳过了多少前导行时,就不可能满足这个目标。
您可以使用函数的range参数,因为read_excel函数的这个参数的文档说:
range
read_excel
要读取的单元格范围,如单元格规范中所述。包括典型的 Excel 范围,如“B3:D87”,可能包括工作表名称,如“Budget!B2:G14”等。严格解释,即使范围强制包含前导或尾随空行或列。优先于 skip、n_max 和 sheet。
此外,您可能需要设置col_names = FALSE,以使行编号保持不变。
col_names = FALSE