wt_ind_detect | R Documentation |
Create independent detections dataframe using camera data from WildTrax
wt_ind_detect(
x,
threshold,
units = "minutes",
datetime_col = image_date_time,
remove_human = TRUE,
remove_domestic = TRUE
)
x |
A dataframe of camera data; preferably, the main report from |
threshold |
Numeric; time interval to parse out independent detections. |
units |
The threshold unit. Can be one of three values, "seconds", "minutes", "hours". |
datetime_col |
Defaults to |
remove_human |
Logical; Should human and human-related tags (e.g. vehicles) be removed? Defaults to TRUE. |
remove_domestic |
Logical; Should domestic animal tags (e.g. cows) be removed? Defaults to TRUE. |
A dataframe of independent detections in your camera data, based on the threshold you specified. The df wil include information about the duration of each detection, the number of images, the average number of individual animals per image, and the max number of animals in the detection.
## Not run:
detections <- wt_ind_detect(x = df, threshold = 30, units = "minutes")
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.