aphids | R Documentation |
A study of the effects of bird exclusion on biological control of aphids in oat and wheat fields in Germany (Grass et al. 2017). Many thanks to Ingo for providing the raw data. In each of two fields (one of oats, one of wheat) there were eight plots, four with plastic netting to exclude birds, and four without. Aphid abundance was counted on seven different occasions over the first 38 weeks following netting. The expectation was that aphid numbers would decrease on bird exclusion, because an important food source to tree sparrows is aphid predators, hoverflies and ladybird beetles, so presence of birds may be limit the effectiveness of a biological control of aphids.
data(aphids)
A list containing two dataframes, oat
and wheat
, depending on the crop. Each
dataframe contains:
The plot ID, a factor with eight levels
A factor indicating whether birds were excluded, excluded
or present
.
The number of days since netting was applied.
Aphid abundance (counts)
log(y+1)-transformed aphid abundance
Grass et al. (2017) Insectivorous birds disrupt biological control of cereal aphids. Ecology, 98 1583-90.
data(aphids)
cols=c(rgb(1,0,0,alpha=0.5),rgb(0,0,1,alpha=0.5)) #transparent colours
with(aphids$oat, interaction.plot(Time,Plot,logcount,legend=FALSE,
col=cols[Treatment], lty=1, ylab="Counts [log(y+1) scale]",
xlab="Time (days since treatment)") )
legend("bottomleft",c("Excluded","Present"),col=cols,lty=1)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.