Hi everyone! I'm new to R and have a quick question about deleting rows
I have a data set with multiple columns and multiple rows. I want to strip out rows where the "Depth" column contains "Integrated" or "Air", so I did that with...
my_data_inflow <- filter(my_data_inflow, ! Depth..m. %in% c("Integrated","Air") )
However, this simply enters NA for these rows. Is there a way to delete the rows with this condition? Thank you so much in advance to anyone who is able to provide any suggestions!
Have a great day!