Hi, I have been playing with graphic parameters to meet my specific plot requirement. I would like to draw a plot in the top right region of the plot region, I can do that with a number of parameters such as plt, mar or oma. For example setting the parameters: par(plt=c(0.28,0.956,0.25,0.9)) or par(mar=c(10,8,4,1)) can do the job. But once I set those parameters, I could't add any text in the extra space left at the bottom left regions. Actually, S-plus allow me to add text in these white spaces, does anyone know how I can do that in R? thanks
On 5/10/2007, at 12:07 PM, array chip wrote:> Hi, I have been playing with graphic parameters to > meet my specific plot requirement. I would like to > draw a plot in the top right region of the plot > region, I can do that with a number of parameters such > as plt, mar or oma. For example setting the > parameters: > > par(plt=c(0.28,0.956,0.25,0.9)) > or > par(mar=c(10,8,4,1)) > > can do the job. But once I set those parameters, I > could't add any text in the extra space left at the > bottom left regions. Actually, S-plus allow me to add > text in these white spaces, does anyone know how I can > do that in R?(1) par(xpd=NA) (2) ?layout ###################################################################### Attention:\ This e-mail message is privileged and confidenti...{{dropped}}
check out the 'grid' package On 10/4/07, array chip <arrayprofile at yahoo.com> wrote:> Hi, I have been playing with graphic parameters to > meet my specific plot requirement. I would like to > draw a plot in the top right region of the plot > region, I can do that with a number of parameters such > as plt, mar or oma. For example setting the > parameters: > > par(plt=c(0.28,0.956,0.25,0.9)) > or > par(mar=c(10,8,4,1)) > > can do the job. But once I set those parameters, I > could't add any text in the extra space left at the > bottom left regions. Actually, S-plus allow me to add > text in these white spaces, does anyone know how I can > do that in R? > > thanks > > ______________________________________________ > R-help at 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. >-- Jim Holtman Cincinnati, OH +1 513 646 9390 What is the problem you are trying to solve?