Re: [R] plot without points overlap

2011-01-07 Thread JD
Hey, thanks for the suggestions but I'm still having some problem. I was able to modify the size pdf/ps file that I generate, but still labels of the right side of the heatmap are not plot entirely. I tried par(mar..) par(pin..) but still cannot do it, any ideas? Thanks! g 2011/1/4 Joshua Wile

Re: [R] plot without points overlap

2011-01-07 Thread Joshua Wiley
On Fri, Jan 7, 2011 at 10:34 AM, JD wrote: > Hey, thanks for the suggestions but I'm still having some problem. > I was able to modify the size pdf/ps file that I generate, This is a somewhat different question. The size of the finally created portable document or postscript file is determined b

Re: [R] plot without points overlap

2011-01-04 Thread Joshua Wiley
Hi, You can set the device region in inches using the "pin" argument (see ?par maybe halfway down or so). You can also set the aspect ratio in plot(), but I am not sure that is really what you want (see ?plot.window for that). Two Examples ### par(pin = c(2, 4)) plot(1:10) dev.off() plot(1:

[R] plot without points overlap

2011-01-04 Thread joonR
Hi, I'm trying to plot a grid of points of different dimensions using the simple plot() function. I want to plot the points such that they DO NOT overlap, I guess there should be a way to set a maximum distance between the points, but I cannot find it. Can you help? Thanks a lot! g PS: Is it p