search for: famdata

Displaying 2 results from an estimated 2 matches for "famdata".

Did you mean: pamdata
2003 Dec 08
3
stripchart problem
Hello, I am trying to plot age distribution data for a certain condition that runs in families. Below is a simplified view of the dataset, i.e. in this case there are four families, each line corresponding to one individual with age at diagnosis and sex. > famdata family age sex 1 fam1 2.1 f 2 fam1 2.3 f 3 fam1 1.0 m 4 fam2 7.3 f 5 fam2 4.1 f 6 fam2 1.2 f 7 fam2 0.6 m 8 fam3 3.5 m 9 fam3 2.5 m 10 fam3 2.9 m 11 fam3 5.6 m 12 fam3 4.4 f 13 fam10 1.1 f 14 fam10 1.2 f 15 fam10 2.9 f 16 fam10 2...
2007 Oct 11
1
constraining correlations
...ertain correlations to be equal. I have family data with 2 twins per family plus up to 2 siblings. I would like to somehow constrain all the sibling correlations (twin-sib and sib-sib) to be the same while allowing the twin-twin correlation to be different. Here is some simulated code: set.seed(5) famdata <- matrix(rnorm(400),ncol=4,dimnames=list(NULL,c("Twin1","Twin2","Sib1","Sib2"))) famdata[runif(100)<.2,3] <- NA #20% of sib 1s are missing famdata[runif(100)<.4,4] <- NA #40% of sib 2s are missing cor(famdata,use="pairwise.complete&...