pangolin_habitat | R Documentation |
A dataset containing habitat occupancy observations of the Critically Endangered Chinese pangolin (Manis pentadactyla) in the urban landscape of Dharan Sub-metropolitan City, Nepal. The data were collected to analyze spatial distribution, habitat use patterns, and anthropogenic impacts on habitat occupancy of Chinese pangolins. The study used a single-season occupancy modeling approach, investigating factors influencing detection probability and habitat occupancy across 134 grid cells of 600m × 600m each.
pangolin_habitat
A data frame with 152 rows and 18 variables:
Unique identifier for each grid cell
Detection (1) or non-detection (0) in first survey replicate
Detection (1) or non-detection (0) in second survey replicate
Detection (1) or non-detection (0) in third survey replicate
Detection (1) or non-detection (0) in fourth survey replicate
Detection (1) or non-detection (0) in fifth survey replicate
Detection (1) or non-detection (0) in sixth survey replicate
Distance to nearest water body in meters
Terrain Ruggedness Index (TRI), a measure of topographic heterogeneity
Mean Normalized Difference Vegetation Index, a measure of vegetation density
Type of habitat: "Sal Forest", "Mixed Forest", "Human Settlement", or "Agricultural Land"
Topographic structure: "Terrace" or "Cliff"
Index of human disturbance, ranging from 0 (low) to 1 (high)
Number of termite mounds in the grid cell
Total number of detections across all six replicates
Binary indicator of whether pangolin was detected (1) or not (0) in any replicate
Categorized human disturbance: "Low", "Medium-Low", "Medium-High", or "High"
The dataset is particularly valuable for teaching concepts in wildlife conservation, occupancy modeling, and human-wildlife interactions in urban environments. It demonstrates how ecological and anthropogenic factors affect endangered species in human-dominated landscapes.
Subba, Asmit and Tamang, Ganesh and Lama, Sony and Basnet, Nabin and Kyes, Randall C. and Khanal, Laxman (2024). Habitat occupancy of the critically endangered Chinese pangolin (Manis pentadactyla) under human disturbance in an urban environment: Implications for conservation. Dryad Digital Repository. \Sexpr[results=rd]{tools:::Rd_expr_doi("10.5061/DRYAD.73N5TB34T")}
# Load the dataset
data(pangolin_habitat)
# Basic exploration
head(pangolin_habitat)
summary(pangolin_habitat)
# Examine detection rates across habitat types
table(pangolin_habitat$habitat_type, pangolin_habitat$detected)
# Visualize the relationship between termite mounds and pangolin detection
boxplot(termite_mounds ~ detected, data = pangolin_habitat,
main = "Termite Mounds and Pangolin Detection",
xlab = "Pangolin Detected", ylab = "Number of Termite Mounds",
names = c("Not Detected", "Detected"))
# Examine the effect of human disturbance on pangolin detection
boxplot(human_disturbance_index ~ detected, data = pangolin_habitat,
main = "Human Disturbance and Pangolin Detection",
xlab = "Pangolin Detected", ylab = "Human Disturbance Index",
names = c("Not Detected", "Detected"))
# Visualize detection across disturbance levels
barplot(prop.table(table(pangolin_habitat$disturbance_level,
pangolin_habitat$detected), 1)[,2],
main = "Pangolin Detection Rate by Disturbance Level",
xlab = "Disturbance Level", ylab = "Detection Rate")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.