Description Format Source See Also Examples
Independent contrast for Bauwens and Diaz-Uriarte (1997) data set; they are
based on the data in the file Lacertid.Original using the
phylogeny in Buwens and Diaz-Uriarte (1997), Tree A — see Lacertid.varcov
The data frame contains eight columns.
The first seven columns are the (standardized) independent contrasts for the respective variables
—see detailed explanation in Lacertid.Original. The
final column is
the names of the contrasts, as the names of the two nodes that form the contrast
Bauwens, D., and Diaz-Uriarte, R. (1997) Covariation of life-history traits in lacertid lizards: a comparative study. The American Naturalist, 149, 91-11
Lacertid.varcov, Lacertid.Original
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 | # Obtaining correlations through the origin;
# compare with Table 3 in Bauwens and Diaz-Uriarte (1997).
data(Lacertid.IC)
cor.lacert <- matrix(nrow=7,ncol=7)
for (i in 1:7) for (j in 1:7)
cor.lacert[i,j] <- cor.origin(Lacertid.IC[[i]],Lacertid.IC[[j]])
cor.lacert
## Not run:
# This data frame can be obtained from the fic data files as:
LacertidIC <- cbind(read.table("ifsmi.fic")[,c(3,4)],
read.table("ihshw.fic")[,c(3,4)],
read.table("iclag.fic")[,c(3,4)],
read.table("icfxx.fic")[,3])
stand <- read.table("ifsmi.fic")[,5]
LacertidIC <- LacertidIC/stand
LacertidIC$contr <- read.table("ifsmi.fic")[,1]
names(LacertidIC) <- c("svl","svl.matur", "hatsvl", "hatweight",
"clutch.size", "age.mat","cl.freq","contr")
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.