Re: [R] Size problem with two dotcharts side by side

2006-10-24 Thread Martin Maechler
jim == jim holtman [EMAIL PROTECTED] on Fri, 20 Oct 2006 08:53:08 -0400 writes: jim It appears that dotchart is not restoring some of the 'par' jim parameters. It only saves some specific one: Indeed. Thank you, Jim and Jean, for the well reproducible example. This will be fixed

Re: [R] Size problem with two dotcharts side by side

2006-10-20 Thread jim holtman
It appears that dotchart is not restoring some of the 'par' parameters. It only saves some specific one: oldpar - par(no.readonly=TRUE) dotchart(1:10, cex = 0.7) # first call newpar - par(no.readonly=TRUE) identical(oldpar,newpar) [1] FALSE lapply(names(oldpar), function(x)if

Re: [R] Size problem with two dotcharts side by side

2006-10-19 Thread Jean lobry
Dear list, I'm answering to my own question. I found that it is possible to reproduce the behavior in the interactive mode this way: quartz() # start a new device (I have also tried with x11() under Linux # and windows() under windows with the same result. dotchart(1:10, cex = 0.7) #

[R] Size problem with two dotcharts side by side

2006-10-08 Thread Jean lobry
Dear all, I'm trying to produce two dotcharts side-by-side within a Sweave document. When I'm compiling this example: \documentclass{article} \begin{document} fig=T,width=8,height=4= par(mfrow = c(1, 2), cex = 0.7) for(i in 1:2) dotchart(1:10) @ fig=T,width=8,height=4= par(mfrow = c(1, 2), cex =