Displaying 2 results from an estimated 2 matches for "zygosity".
Did you mean:
bogosity
2010 Mar 24
2
Exclude data using logical
...ng, as I get results that
obviously aren't correct.
Many thanks,
Paul
twin.wide$a<-twin.wide$RCCT<600 & twin.wide$RCCT>480
twin.wide$b<-twin.wide$LCCT<600 & twin.wide$LCCT>480
selVarsCCT <- with(twin.wide,c('a','b'))
MZCCT <- subset(twin.wide,Zygosity=='MZ',selVarsCCT)
DZCCT <- subset(twin.wide,Zygosity=='DZ',selVarsCCT)
--
View this message in context: http://n4.nabble.com/Exclude-data-using-logical-tp1689992p1689992.html
Sent from the R help mailing list archive at Nabble.com.
2005 Apr 04
1
R package that has (much) the same capabilities as SAS v9 PROC GENMOD
...capabilities, for my data analysis, like the Pinheiro & Bates
S-Plus/R package nlme() but with binomial family and logit link.
I need multiple crossed, possibly interacting fixed effects (age cohort of
twin when entered study, sex of twin, sampling method used to acquire twin
pair, and twin zygosity), a couple of random effects other than the cluster
variable, and the ability to have a variable of the sort that P&B call
"outer" to the clustering variable---zygosity. Dependent variables are all
parental (mom, dad separately of course) psychiatric diagnoses.
In my data, twin p...