Skip to content
Prev 200267 / 398502 Next

re move row if the column "date_abandoned" has a date in it

I tried the following but it does the opposite of what i want:

new_data5 <- subset(new_data4, date_abandoned > "01010000")

I want to remove the rows with dates and leave just the rows without a date.

This removes all the rows that dont have a date in the date_abandoned column 

...on a positive note, as i did this next...

dim(new_data5)
[1] 263  80

....i now know that i have 263 dates in that column :)

I want to remove the 263 rows with dates and leave just the rows without a
date.
David Winsemius wrote: