geoOutliers | R Documentation |
Detect geographic outliers
geoOutliers( df, xf, yf, .alpha.parameter, .distance.parameter = 1000, .medianDeviation.parameter = 5, .samplingIntensThreshold.parameter = 0.1, method = "all", .projString, do = TRUE, verbose = FALSE )
df |
data.frame of species occurrences |
xf |
character. column name in df containing the x coordinates |
yf |
character. column name in df containing the y coordinates |
.alpha.parameter |
parameter setting for alphahull |
.distance.parameter |
numeric. Maximum distance allowed. Default to 1000 |
.medianDeviation.parameter |
numeric. Deviation parameter to . Default to 0.1 |
method |
charcter. Vector of methods to be used. See details. Default 'all' |
.projString |
proj4string character. Indicate coordinate reference system |
do |
logical. Should tests be performed? Default TRUE |
verbose |
logical. Print messages? Default FALSE |
Methods implented are 'alphaHull', detecting species outside an alphaHull level (default 2),
'alphaHull'
'distance' corresponds to 'distance' method in CoordinateCleaner::cc_outl(method='distance'). See ?CoordinateCleaner::cc_outl
'median' corresponds to 'mad' method in CoordinateCleaner::cc_outl(method='mad'). See ?CoordinateCleaner::cc_outl
'quantSamplingCorrected' corresponds to 'mad' method in CoordinateCleaner::cc_outl(method='quantile'). See ?CoordinateCleaner::cc_outl
'grubbs' implements Grubbs test to find spatial outliers. See ?findSpatialOutliers for details
data.frame
Josep M Serra-Diaz (pep.serradiaz@agroparistech.fr), Cory Merow (cmerow@gmail.com)
getPointsOutAlphaHull, cc_outl, findSpatialOutliers
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.