powered by
A dataset containing taxonomic classification and functional traits of nematode genera, including feeding habits and ecological group (c-p value).
nematode.info
A data frame with 2484 rows and 4 variables:
Nematode genus name (character), e.g. "Parascaris", "Heterakis"
Taxonomic family name (character), e.g. "Ascarididae", "Heterakidae"
Feeding behavior category (character), e.g. "Bacterial feeders", "Omnivores"
Colonizer-Persister group (numeric, 1-5)
This dataset is particularly useful for:
Ecological studies of soil nematode communities
Trophic network analysis
Calculating nematode maturity indices (e.g. MI, PPI)
# Load the data data(nematode.info) # Count nematodes by feeding habit table(nematode.info$Feeding_habit) # Find all genera in Ascarididae family subset(nematode.info, Family == "Ascarididae")
Run the code above in your browser using DataLab