[R] converting a BMDP 8V mixed model to R / nlme

Wilhelm B. Kloke wb at vestein.arb-phys.uni-dortmund.de
Thu Aug 9 16:53:15 CEST 2001


[Sorry, In case this is repeating a message already sent to the list].

I am trying to move a project to R (base or nlme), for which I have a
partial
solution in BMDP 8V. Here is the 8V control language:

/input  title='Augenbewegungen'.
        variables=4.
        file='latm.dat'.
        format='11x,f7.0,f7.0,f12.4,f10.0'.
/variables names=
llat,rlat,vg,diff.
/design
ndep = 4.
level=21,2,2,9,3.
names = person,retest,direct,flicker,ground.
random = person.
fixed = retest,ground,direct,flicker.
model = 'P,R,G,D,F'.
/end.
/finish.

BMDP 8V calculates the anova and reports F-values for tests of all fixed
effect
interactions against the error from the interaction with person
variables.
Also estimates of variance components. (BMDP is used on uVAX3100 , 24MB,
VMS system, CPU time 20 s for this problem). I tried to translate the
setup
to R. The nearest equivalent I got was:

latm <- read.table("latm.dat" )
latm.aov <- aov( llat ~ person + retest * direct * flicker * ground
	+ Error ( person : ( retest * direct * flicker * ground )))

summary(latm.aov) at least reports the same F-values as 8V does. Though
the
R computations thrash my system (FreeBSD, K6-233, 64MB). I have to
triple the swapspace before starting, and I wait about an hour for
either rebooting the system or having a lucky outcome. There seems to be
something fundamentally wrong.

It seems I have to move to nmle to get variance components. I did not
manage to translate my problem to mle language yet.

Thanks for any help

-- 
Dipl.-Math. Wilhelm Bernhard Kloke
Institut fuer Arbeitsphysiologie an der Universitaet Dortmund
Ardeystrasse 67, D-44139 Dortmund, Tel. 0231-1084-257
-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-
r-help mailing list -- Read http://www.ci.tuwien.ac.at/~hornik/R/R-FAQ.html
Send "info", "help", or "[un]subscribe"
(in the "body", not the subject !)  To: r-help-request at stat.math.ethz.ch
_._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._



More information about the R-help mailing list