powered by
checks for missing coordinates in the occurrence dataframe
filterMissing(df, xf, yf, verbose = FALSE)
List with two dataframes: stay = coordinates missing and continue = occurrence that you can retain for further analysis
dat.frame of species occurrences
character. The field in the data.frame containing the x coordinates
character. The field in the data.frame containing the y coordinates
logical. Print messages? Default FALSE
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')
Run the code above in your browser using DataLab