Skip to content

deleting specified NA values

1 message · Liaw, Andy

#
This sort of things are most likely covered in `An Introduction to R':

newDATA <- DATA[!is.na(DATA$age),]

Andy