Description Usage Format Source References Examples
Standardized data from the Kimball et al. (2013) study on phenotypic selection in four winter annual plant species from the Sonoran Desert that identified a trade-off between relative growth rate and water use efficiency. Traits were standardized by "substracting the mean and dividing by the standard deviation". These data were downloaded from Dryad and then formatted for use in this R package. DesertPlants consists of the following variables:
wrelative fitness, based on total plant biomass (RelFitness), which was used as a proxy for seed production.
stdRGRstandardized relative growth rate.
stdSLAstandardized specific leaf area, which was calculated as leaf area/dry mass of the leaf.
stdRMRstandardized root mass ratio, which was calculated as root dry mass/total dry mass.
stdNstandardized leaf Nitrogen content.
stdDELTAstandardized integrated water-use efficiency over the lifetime of the leaf, based on carbon isotope ratios.
Sitecollection site within the Sonoran Desert. TH = University of Arizona's Desert Laboratory at Tumamoc Hill; cooler and wetter site. OPNM = Organ Pipe National Monument; warmer and drier site.
Speciesspecies of plant. STMI = Stylocline micropoides, ERLA = Eriophyllum lanosum, PERE = Pectocarya recurvata, and ERTE = Erodium texanum.
IDindividual identification number within each treatment/species combination.
1 |
data.frame with 913 observations and 9 variables. Note: The trait data contain missing values
These data were obtained from the "KimballetalData.xlsx" data file available on Dryad: http://dx.doi.org/10.5061/dryad.c8c58, and are associated with Kimball et al. (2013)
Kimball S, Gremer JR, Huxman TE, Venable DL, Angert AL (2013) Phenotypic selection favors missing trait combinations in coexisting annual plants. The American Naturalist 182(2): 191-207. http://dx.doi.org/10.1086/671058
1 2 3 4 5 6 7 8 | # Load the data
data(DesertPlants)
# Look at the structure of the data.frame
str(DesertPlants)
# Run a linear regression with w as the response and the morphological traits as the predictors
lm(w ~ ., data = DesertPlants[,1:6])
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.