Re: [R] Problem with memory footprint of qq plot generated with lattice

2005-09-29 Thread dhinds
Witold Eryk Wolski <[EMAIL PROTECTED]> wrote: > Adding f.value=fn as argument to qqmath reduces the size of the image, > but neither the axis (absicissae) nor the line added by panel.qqmathline > are right. > Adding f.value=fn as argument to panel.qqmathline and panel.qqmath > generates the ri

Re: [R] Problem with memory footprint of qq plot generated with lattice

2005-09-29 Thread Witold Eryk Wolski
Dave, qqmath(~val|ind,data=xx ,distribution=function(p) qt(p,df=19) ,ylab="Sample Quatinles" ,xlab="Theoretical Quantiles" ,aspect=1 ,prepanel = prepanel.qqmathline ,panel=function(x,y) { panel.qqmathline(y, distribution=function(p) qt(p,d

Re: [R] Problem with memory footprint of qq plot generated with lattice

2005-09-28 Thread dhinds
nwew <[EMAIL PROTECTED]> wrote: > Dear R helpers, > I generate a qq plot using the following function call. ... > dim(xx) > [1] 680237 2 How about doing something like this: fn <- function(n,cut=0.001,m=1000) { p <- ppoints(n) p <- p[pmin(p, 1-p) < cut] q <- pt(seq(qt(cut,df=1

[R] Problem with memory footprint of qq plot generated with lattice

2005-09-28 Thread nwew
Dear R helpers, I generate a qq plot using the following function call. qqmath(~val|ind,data=xx ,distribution=function(p) qt(p,df=19) ,ylab="Sample Quatinles" ,xlab="Theoretical Quantiles" ,aspect=1 ,prepanel = prepanel.qqmathline ,panel=function(x,y)