使用 fill( ) 读取 excel 文件
reading excel file with fill( )
我正在重新调整别人的代码,如下所示:
china <- read_excel("Data/China.xlsx",range = "A5:J62") %>%
fill(X__1)
我不知道 fill(X__1) 在这里是什么意思。我收到一个错误:
Error in .f(.x[[i]], ...) : object 'X__1' not found
我安装了所有软件包(readxl、tidyr)。
来自帮助文件
?tidyr::fill
Fills missing values in using the previous entry. This is useful in
the common output format where values are not repeated, they're
recorded each time they change.
即它采用 X__1
中的第一个非缺失值并在所有缺失值中重复它。
您收到的错误意味着没有 'X__1' 列可以填充值。
我正在重新调整别人的代码,如下所示:
china <- read_excel("Data/China.xlsx",range = "A5:J62") %>%
fill(X__1)
我不知道 fill(X__1) 在这里是什么意思。我收到一个错误:
Error in .f(.x[[i]], ...) : object 'X__1' not found
我安装了所有软件包(readxl、tidyr)。
来自帮助文件
?tidyr::fill
Fills missing values in using the previous entry. This is useful in the common output format where values are not repeated, they're recorded each time they change.
即它采用 X__1
中的第一个非缺失值并在所有缺失值中重复它。
您收到的错误意味着没有 'X__1' 列可以填充值。