jclbrooks / MD_Stream_Salamanders

MIT License
0 stars 0 forks source link

Remove NAs from W Maryland salamander data #4

Open jclbrooks opened 5 years ago

jclbrooks commented 5 years ago

The NAs that are found in the "obs" column need to be removed. I've tried complete.cases() and assigning the NAs to another object and cannot get it to work.

Line 277-282 of "Landscape_MSOM.R" file

djhocking commented 5 years ago

Do all NA in obs need to be removed? If so then dplyr::filter(!is.na(obs)) would be what you want.