在R中的shapefile中删除行
我已将shapefile导入R,并将其加入到表中。我的shapefile包含所有人口普查ID,而我的表仅包含选定的人口普查ID。我现在正在尝试删除所有未匹配的行。 这是我的数据集的样子(我正在尝试删除所有带有NA的行,因此需要删除最后两行): CTUID Cluster Average 5350007.01 1 124.53 5350007.02 1 234.87 5350010.01 4 110.11 5350010.02 5 187.68 5350001 NA NA 5350002 NA NA 我尝试使用此行代码: shape2[!(rowSums(is.na(shape2))==NCOL(shape2)),] 这给了我这个错误: Error in rowSums(is.na(shape2)) : 'x' must be an array of at least two dimensions In addition: Warning message: In is.na(shape2) : is.na() applied to …