filterMissing | R Documentation |
checks for missing coordinates in the occurrence dataframe
filterMissing(df, xf, yf, verbose = FALSE)
df |
dat.frame of species occurrences |
xf |
character. The field in the data.frame containing the x coordinates |
yf |
character. The field in the data.frame containing the y coordinates |
verbose |
logical. Print messages? Default FALSE |
List with two dataframes: stay = coordinates missing and continue = occurrence that you can retain for further analysis
Josep M Serra-Diaz (pep.serradiaz@agroparistech.fr)
k <- data.frame (x=c(runif (n = 100),NA),y=c(runif (n = 100),1000)) filterMissing(k,xf='x',yf='y')
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.