seedsTemp | R Documentation |
Germination rates of Abutilon angulatum from 29 different studies, undertaken at different ambient temperatures. We would like to know how germination rate varies with temperature, in particular, the range of temperatures at which Abutilon angulatum will germinate. These data come from a larger study across species and environments to look for a latitudinal signal in tolerance to changing temperature (Sentinella et al 2020).
data(seedsTemp)
A dataframe containing:
The number of seeds sown.
The number of seeds that germinated.
The ambient temperature (in degrees Celsius) of the location at which seeds were sown.
Sentinella, AT, Warton, DI, Sherwin, WB, Offord, CA, Moles, AT. (2020) Tropical plants do not have narrower temperature tolerances, but are more at risk from warming because they are close to their upper thermal limits. Global Ecol Biogeogr. 29, 1387-1398.
data(seedsTemp)
seedsTemp$propGerm = seedsTemp$NumGerm / seedsTemp$NumSown
plot(propGerm/(1-propGerm)~Test.Temp,data=seedsTemp,log="y",
ylab="Germination rate [logit scale]", xlab="Temperature (Celsius)")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.