I have some data that I am looking at in R. One particular column, titled \"Height\", contains a few rows of NA.
I am looking to subset my data-frame so that all He
You could also do:
df2 <- df1[(df1$Height < 40 | is.na(df1$Height)),]