On Wednesday, April 6, 2016 at 6:05:04 PM UTC-5, Christina Castellani wrote: > > I am having difficulty figuring out how to pull out the residuals and > fitted values from the result of an lmm in Julia using the package > MixedModels.jl > > In R I would use "residuals(m)" or "fitted(m)", where m is the lme output, > to get the desired result. > > Any advice would be greatly appreciated. >
I would need to add methods for fitted and residuals to the MixedModels package for that to work. The tricky bit is deciding what fitted should return - the linear predictor from the fixed-effects and the random-effects or from the fixed-effects only. Most people want the first of these.
