[R] How can I display an entire large output?

Dieter Menne dieter.menne at menne-biomed.de
Fri Jan 25 08:46:16 CET 2008


Daniel S. Ott <dott <at> uvm.edu> writes:

> 
>      I have been working with a mixed effects model in R where I have  
> a lot of fixed effects with a lot of variables.  When I use the  
> summary command I can only view the end of the output with the  
> intraclass correlations and distribution of residuals.  I need to be  
> able to see the summary table at the top of the output.  Is there a  
> way to display an entire output?


You did not tell us, what system you are using. Presumably not RGui/Windows,
because then you could scroll back. Same for the other a few alternatives I can
imagine.

However, the following should always work:

sink("lme.txt")
do your work here
sink()

Dieter



More information about the R-help mailing list