Data from: Dynamic shifts in predator diel activity patterns across landscapes and threat levels
Data files
Oct 17, 2023 version files 10.63 MB
-
data_predator_counts_hour.csv
10.62 MB
-
fit_gams.R
6.19 KB
-
plotting_functions.zip
9.96 KB
-
README.md
1.87 KB
-
spatiotemporal-gams-invasive-predators.Rproj
205 B
Abstract
Understanding the constraints dominant predators impose on subordinate species is important for predicting ecosystem dynamics and anticipating outcomes of predator management. Subordinate predators may avoid dominant predators in time or space, making it difficult to quantify antipredator behaviours unless joint spatiotemporal analyses are used. Here, we tested whether an invasive dominant predator (red fox Vulpes vulpes) alters the spatiotemporal activity of an invasive subordinate predator (feral cat Felis catus). We collated records of both species from 3,667 camera-traps deployed experimentally across two regions of south-eastern Australia with simplified predator guilds. Foxes were poison-baited in some landscapes within each region. We used generalised additive models to quantify changes in predator spatiotemporal activity across geographic space, vegetation types, human footprint and (artificially manipulated) gradients of dominant predator activity. Foxes and cats had similar diel activity patterns when averaged across all sites, however there was important differentiation at a finer scale cats did not reduce their spatial activity but shifted diel patterns when localised fox activity was high. Cats were crepuscular on average. However, across dry vegetation types of both regions (where foxes were nocturnal), cats shifted to diurnal behaviour with increasing fox activity. In contrast, fox activity was relatively consistent throughout the daily cycle in the wet forest; here cats avoided dawn when fox activity was high. Changes in cat diel activity patterns may facilitate spatial coexistence between these two invasive predators, potentially shifting feral cat impacts onto different native prey. It is well-appreciated that predator activity varies spatially and fluctuates throughout the daily cycle. However, our study demonstrates that diel activity patterns also vary across space, likely mediated by both landscape-context and fear. Dominant predator avoidance in time appears to be spatially dynamic a key nuance which is overlooked when simply comparing the average activity overlap between two species.
README: Data from: Dynamic shifts in predator diel activity patterns across landscapes and threat levels
https://doi.org/10.5061/dryad.9ghx3ffq4
This repository contains data and code to reproduce results the Oikos manuscript 'Dynamic shifts in predator diel activity patterns across landscapes and threat levels'.
This workflow can be reproduced by opening the 'spatiotemporal-gams-invasive-predators.Rproj' in Rstudio.
The dataset is provided 'data_predator_counts_hour.csv', which contains the following columns:
'region' - the broad region the site was within: glenelg or otways.
'station' - unique ID for camera-trap site.
'year' - year of survey (along with 'station', denoting unique camera-trap deployments at a site).
'x' - x geographic coordinate of the site in the VICGRID CRS.
'y' - y geographic coordinate of the site in the VICGRID CRS.
'hour' - hour of the day.
'cat' - counts of feral cat detections in the associated camera-trap site deployment and hour.
'fox' - counts of red fox detections in the associated camera-trap site deployment and hour.
'fox_count_adj' - counts of red fox detections in the associated camera-trap site deployment (note: not by hour) divided by survey duration of the deployment.
'foxbaits' - number of poison 1080 fox baits within 2.3 km radius of the camera-trap site at the time of deployment.
'vegetation_group' - Ecological Vegetation Class group (adjusted per manuscript).
'habitat_type' - denotes a wet (rainforest or wet forest) or dry (all others) vegetation_group.
'survey_duration' - number of functional days the camera-trap was active for.
'hfi' - human footprint index value associated with the site.
The R script to fit Generalised Additive Models (GAMs) 'fit_gams.R', and helper R functions to make the associated figures in the 'plotting_functions' folder.
Methods
We compiled data from multiple smaller-scale camera-trap studies, each designed to experimentally assess mammal responses to fox control. Overall, we collated 5,449 and 2,202 independent detections of foxes and cats, respectively (separated by at least 30 minutes) from 172,052 camera-trap nights. We collated camera-trap data across two regions in south-west Victoria, Australia: the Glenelg region and Otway Ranges. In broad sections of each region, government land managers conduct ongoing targeted lethal fox control for biodiversity conservation. All camera-trap deployments consisted of a Reconyx (Holmen, Wisconsin) brand camera-trap (white or infrared flash), attached to a tree or a metal picket, facing a lure.
Analyses were conducted in R version 4.1.3 [@R]. We first used lorelograms to identify the minimum interval to approximate independence; this indicated that discarding repeat detections of a species within 30 minutes was sufficient to reduce temporal autocorrelation. To account for day length variation across space and time, we extracted sunrise and sunset times for each camera-trap deployment using the 'maptools' R-package and adjusted detection times to be relative to sunrise and sunset using the average double anchoring approach described by @vazquez2019comparing. We then built a dataframe consisting of a row for each hour of the day (0-23), for every camera-trap deployment (n = 3,667), recording the total number of 'independent' fox and feral cat detections within each hour across the camera-trap survey. We modelled the total number of independent detections of each predator per hour for each camera-trap deployment (response variable) with generalised additive mixed-effect models implemented in the 'mgcv' R-package.