[From nobody Sat Mar 18 16:15:45 2006 X-Mozilla-Status2: 00000000 Message-ID: <3723228A.9CD8EF59@inreach.com> Date: Sun, 25 Apr 1999 07:11:23 -0700 From: Orlando San Martin <orlando@inreach.com> Reply-To: smorland@online.no X-Mailer: Mozilla 4.5 [en] (Win98; I) X-Accept-Language: en MIME-Version: 1.0 To: R-Mailing-List <r-help@stat.math.ethz.ch> Subject: pictex Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Hi, I am very new to R and trying to bring my plot of residuals to my LaTex document, and seems as I need some help. I first tried the example from the help file, e.g. pictex(file="model1.tex", width=5, height=4) plot(1:11,(-5:5)^2, type='b', main="Simple Example Plot") dev.off() this worked fine in LaTex when I did : \centerline{\input{Rplots.tex}} However, with my residuals plot, which looks like : pictex(file="model1.tex") plot(fitted(model1),resid(model1),xlab="Fitted values", ylab="Residuals", main="Residuals vs Fitted") I can see OK the generated plot in my Xwindow, but LaTex complains that requires more memory. I am not a LaTex expert either, so I wonder if it REALLY needs more memory or I should use some other more efficient way of doing it in R, for instance instead of pictex ??. I'll appreciate your feedback. orlando ]