Description Usage Format Details Source Examples
Two datasets with genotypes and phenotypes for backcrossed Drosophilas.
1 |
Two datasets with genotypes and phenotypes for backcrossed Drosophilas.
The set of 41 markers describes genotypes while 5 variables describe phenotypes. See references for more details.
bmA data.frame with 370 obs. and 46 variables, first 41 are genotypes of gene markers, last five describes genotypes
bsA data.frame with 402 obs. and 46 variables, first 41 are genotypes of gene markers, last five describes genotypes
chrFactor w/ 4 levels CBFbeta, FLT3, None, Other
posMarkers position on chromosom in centimorgnas
The phonotype pc1 is nicely described by genotype in both backcrossed datasets.
Genetic Architecture of a Morphological Shape Difference Between Two Drosophila Species Zhao-Bang Zenga, Jianjun Liu, Lynn F. Stamb, Chen-Hung Kao, John M. Mercer, Cathy C. Laurie Genetics, Vol. 154, 299-310, January 2000
1 2 3 4 5 6 7 8 9 10 11 12 | data(Drosophila)
library(lattice)
# calculate log likelihoods
pval1 = numeric(41)
for (i in 1:41) {
y = Drosophila$bm$pc1
x = factor(Drosophila$bm[,i])
pval1[i] = logLik(lm(y~x))
}
# loglikelihood plot
xyplot(pval1~pos|chr, data=Drosophila, type=c("p","l"),
pch=19, ylab="log likelihood")
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.