Daniel-6 wrote: > > Hello, I'm trying to add lme results in a table with lm coef results, but > as > I know, estout or xtabel cannot support lme objects. > I'm a new in R and I'll appreciate some helpful comments. >
I don't know what estout and xtabel do, but if you want to extract the core results of lme, the following should give you a starter. For latex output, you could use latex in Hmisc. Dieter library(nlme) fm1 = summary(lme(distance ~ age, data = Orthodont)) tabl = fm1$tTable tabl str(tabl) -- View this message in context: http://n4.nabble.com/Print-table-in-lme-tp1562325p1562727.html Sent from the R help mailing list archive at Nabble.com. ______________________________________________ R-help@r-project.org mailing list https://stat.ethz.ch/mailman/listinfo/r-help PLEASE do read the posting guide http://www.R-project.org/posting-guide.html and provide commented, minimal, self-contained, reproducible code.