chamae {aster}R Documentation

Life History Data on Chamaecrista fasciculata

Description

Data on life history traits for the partridge pea Chamaecrista fasciculata

Usage

chamae

Format

A data frame with records for 2235 plants. Data are already in “long” format; no need to reshape.

resp
Response vector.
varb
Categorical. Gives node of graphical model corresponding to each component of resp. See details below.
root
All ones. Root variables for graphical model.
id
Categorical. Indicates individual plants.
STG1N
Numerical. Reproductive stage. Integer with only 3 values in this dataset.
LOGLVS
Numerical. Log leaf number.
LOGSLA
Numerical. Log leaf thickness.
BLK
Categorical. Block within experiment.

Details

The levels of varb indicate nodes of the graphical model to which the corresponding elements of the response vector resp belong. This is the typical “long” format produced by the R reshape function. For each individual, there are several response variables. All response variables are combined in one vector resp. The variable varb indicates which “original” variable the number was for. The variable id indicates which individual the number was for. The levels of varb, which are the names of the “original” variables are

fecund
Fecundity. Bernoulli, One if any fruit, zero if no fruit.
fruit
Integer. Number of fruits observed. Greater than or equal 3 if nonzero.
seed
Integer. Number of seeds observed from a random sample of 3 of the fruits for this individual.

Source

Julie Etterson http://www.d.umn.edu/biology/faculty/Etterson_page1.htm

References

These data have been previously analyzed by non-aster methods in the following.

Etterson, J.~R. (2004). Evolutionary potential of Chamaecrista fasciculata in relation to climate change. I. Clinal patterns of selection along an environmental gradient in the great plains. Evolution, 58, 1446-1458.

Etterson, J.~R., and Shaw, R.~G. (2001). Constraint to adaptive evolution in response to global warming. Science, 294, 151-154.

Examples

data(chamae)
### wide version
chamaew <- reshape(chamae, direction = "wide", timevar = "varb",
    v.names = "resp", varying = list(levels(chamae$varb)))

[Package aster version 0.7-7 Index]