print.EnvironmentalOutlier | R Documentation |
EnvironmentalOutlier
object.Display the environmental variable values comparing to the mean values of the detected environmental outliers in observations.
## S3 method for class 'EnvironmentalOutlier'
print(x, ...)
x |
( |
... |
Not used. |
The same object that was passed as input.
suspicious_env_outliers
, plot.EnvironmentalOutlier
library(dplyr)
library(sf)
library(stars)
library(itsdm)
data("occ_virtual_species")
env_vars <- system.file(
'extdata/bioclim_tanzania_10min.tif',
package = 'itsdm') %>% read_stars() %>%
slice('band', c(1, 5, 12, 16))
occ_outliers <- suspicious_env_outliers(
occ = occ_virtual_species, variables = env_vars,
z_outlier = 5, outliers_print = 4L)
print(occ_outliers)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.