search for: nnor

Displaying 4 results from an estimated 4 matches for "nnor".

Did you mean: nor
2000 Dec 28
1
some (may be related) problems with windows(rescale=) (PR#794)
...########################################### width <- 16.53543 height <- 11.69291 ## as a reference windows(width=width, height=height, rescale="fixed") plot(0:2,0:2, type="n") text(1,1,"there is hardly anything i know for sure\nneither of the future nor of the past\nnor should i know what to ask\nif the person answering was you\n\n(Ernst Jandl, stanzen)" ,cex=2) ## Here rows are too close together windows(width=width, height=height, rescale="fit") plot(0:2,0:2, type="n") text(1,1,"there is hardly anything i know for sure\nneither of...
2000 Dec 29
0
Is this a bug? Having cex!=1 before setting par(mai=) gives strange line spacings.
...before setting par(mai=) windows(width=width, height=height, rescale="R") oldmai <- par("mai") par(cex=1) par(mai=oldmai) plot.new() par(usr=c(0,2,0,2)) par(cex=2) par1 <- par() text(1,1,"there is hardly anything i know for sure\nneither of the future nor of the past\nnor should i know what to ask\nif the person answering was you\n\n(Ernst Jandl, stanzen)") dev.off() # now set cex != 1 before setting par(mai=) # shouldn't change anything but does change line spacing windows(width=width, height=height, rescale="R") par(cex=2) par(mai=oldmai) plot...
2000 Dec 28
0
some (may be related) problems with windows(rescale=) (PR#795)
...gt; > > width <- 16.53543 > height <- 11.69291 > > ## as a reference > windows(width=width, height=height, rescale="fixed") > plot(0:2,0:2, type="n") > text(1,1,"there is hardly anything i know for sure\nneither of the future nor of the past\nnor should i know what to ask\nif the person answering was you\n\n(Ernst Jandl, stanzen)" > ,cex=2) > > ## Here rows are too close together > windows(width=width, height=height, rescale="fit") > plot(0:2,0:2, type="n") > text(1,1,"there is hardly anythin...
2001 Jan 10
0
Re: some problems with windows(rescale=) (PR#794)
...implementation does not make sense with devices bigger than the screen. > ======================== > > # I intend to layout DIN A3 > width <- 16.53543 > height <- 11.69291 > jandltext <- "there is hardly anything i know for sure\nneither of the future nor of the past\nnor should i know what to ask\nif the person answering was you\n\n(Ernst Jandl, stanzen)" > windows(width=width, height=height, rescale="fixed") > > # using windows() I find out that with cex=3.2 the following commands give a text that exacly fills the plot area (horizontally) &...