如何使用 read_excel 跳过空白单元格
How to skip blank cells with read_excel
我正在使用 read_excel 将数据导入 R。excel 文件中的一些单元格是空的。我希望 R 跳过这些,目前它正在将它们作为 NA 读入变量。
file.dat <- read_excel("File.xlsx", sheet = 3)
或者,可以在该步骤将数据读入另一个变量并删除 NA 值吗?
myData <-file.dat$MyData #how do I skip NA when reading in the MyData variable?
excel 文件的快照:
R 中的当前输出:
我想删除“NA”。我不需要保留索引。
myData <-file.dat$MyData #read the variable
myData<-na.omit(myData) #remove the n/a
我正在使用 read_excel 将数据导入 R。excel 文件中的一些单元格是空的。我希望 R 跳过这些,目前它正在将它们作为 NA 读入变量。
file.dat <- read_excel("File.xlsx", sheet = 3)
或者,可以在该步骤将数据读入另一个变量并删除 NA 值吗?
myData <-file.dat$MyData #how do I skip NA when reading in the MyData variable?
excel 文件的快照:
R 中的当前输出:
myData <-file.dat$MyData #read the variable
myData<-na.omit(myData) #remove the n/a