l51 | R Documentation |
The data contains data on 51 individuals in a pedigree. Below it is used for comparing results from various packages.
data(l51)
A data frame
Morgan v3.
Morgan v3. https://sites.stat.washington.edu/thompson/Genepi/MORGAN/Morgan.shtml
## Not run:
km <- kin.morgan(l51)
k2 <- km$kin.matrix*2
# quantitative trait
library(regress)
r <- regress(qt ~ 1, ~k2, data=l51)
names(r)
r
# qualitative trait
N <- dim(l51)[1]
w <- with(l51,quantile(qt,probs=0.75,na.rm=TRUE))
ped51 <- within(l51, bt <- ifelse(qt<=w,0,1))
d <- regress(bt ~ 1, ~k2, data=ped51)
d
# for other tests not shown here
set.seed(12345)
ped51 <- within(ped51,{r <- rnorm(N); bt[is.na(bt)] <- 0})
library(foreign)
write.dta(ped51,"ped51.dta")
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.