search for: agemean

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

2011 Aug 11
1
Subsampling data
...quot; "adults" [8] "children" "student" "retired" "disabled" "homemaker" "unemployed" "employed" [15] "occupation" "residencysize" "educ" "agemean" "age" "marital" $codepage [1] 1252 > MalesData <- Datatemp[Datatemp $sex==1] > MalesData named list() > attributes(MalesData) $names character(0) Females.Data <- Datatemp[Datatemp $sex==2] *This subset extraction is not working. Is the...
2012 May 04
0
Converting code from gee() to geeglm()
...dvice from this fine group on gee() and sample weights One suggestion was to use geeglm() I hope someone can help me to solve a problem that arises when converting a code from gee to geeglm. *Here is a code that I wrote with the original data, not weighted: * > m1 <- gee( Bin ~ educ+agemean+ residencysize + yearx , id = rad09 , data = Males, subset = marp1 == 1 , + family = binomial, corstr ="unstructured" ) (Intercept) educ agemean residencysize yearx -0.23875 -0.17931 -0.01470 -0.07418 -0.15200 > se <- summary...