Re: [R] 'nlme' library - lme function results

2010-01-16 Thread Dieter Menne
Michal Figurski wrote: I am running a simple mixed effects model using lme(). The call looks like this: fit - lme(Analyte~Sample, data=Data, random=~1 | Run) I am particularly interested in the estimated random effects. When I print the 'fit' object, it looks something like example

Re: [R] 'nlme' library - lme function results

2010-01-16 Thread Peter Ehlers
Dieter Menne wrote: Michal Figurski wrote: I am running a simple mixed effects model using lme(). The call looks like this: fit - lme(Analyte~Sample, data=Data, random=~1 | Run) I am particularly interested in the estimated random effects. When I print the 'fit' object, it looks

Re: [R] 'nlme' library - lme function results

2010-01-16 Thread Dieter Menne
Peter Ehlers wrote: .. or get both from VarCorr(model): VarCorr(fm2) #Subject = pdLogChol(1) #Variance StdDev #(Intercept) 3.266784 1.807425 #Residual2.049456 1.431592 Krr.. I knew I had some sort of blackout. Dieter -- View this message in context:

[R] 'nlme' library - lme function results

2010-01-15 Thread Michal Figurski
Dear R-helpers I am running a simple mixed effects model using lme(). The call looks like this: fit - lme(Analyte~Sample, data=Data, random=~1 | Run) I am particularly interested in the estimated random effects. When I print the 'fit' object, it looks something like example below: (...)