so, I am trying to subset a file by a row number id that I gave it. parcels$row_number includes 7075 observations that run from 1-7075; miss_list is a list that has 29 of those row numbers, that I am trying to isolate. I ran this, but got the following error:
parcels_subset<- parcels%>% subset(parcels$row_number == miss_list)
In parcels$row_number == miss_list : longer object length is not a multiple of shorter object length
Any suggestions would be appreciated! (parcels$row number and miss_list are both characters if that matters)