search for: bi_meta

Displaying 1 result from an estimated 1 matches for "bi_meta".

Did you mean: __meta
2007 Dec 10
0
SAS PROC NLMIXED into R
...in R and much worst in SAS. So my obstacle right now how to translate this syntax, specially to choose the correct function in R that better fit this SAS syntax with PROC NLMIXED. nlme or lme4? or they both would work well? Original SAS syntax (if it makes any difference?)..... proc mixed data=bi_meta method=reml cl ; /* option cl will give confidence intervals */ class study_id modality; model logit dis*modality non_dis*modality / noint cl df=1000, 1000, 1000, 1000, 1000, 1000; random dis non_dis / subject=study_id type=un ; repeated / group=rec; parms / parmsdata=cov hold=4 to 91; Best re...