search for: cexbase

Displaying 10 results from an estimated 10 matches for "cexbase".

Did you mean: cease
2000 Dec 17
1
multiframe in postscript
I was hoping that the following specification postscript(file="fig.ps",height=2,width=4) par(mar=c(5,5,2,2)+.1,mfrow=c(1,2),mex=.6) would yield the same scaling effect as postscript(file="fig.ps",height=2,width=6) par(mar=c(5,5,2,2)+.1,mfrow=c(1,3),mex=.6) but the fact is that the 'mfrow=c(1,2)' yields smaller plotting frame and bigger font size.
2001 Apr 25
1
Re: identify.default ignores any setting of cex (PR#660)
...an Ripley: > R 1.1.1 on Windows, but I think this is widespread. > > Using either > > par(cex=0.5) > plot(1:10) > identify(1:10) > > or > > plot(1:10) > identify(1:10, cex=0.5) > > ignores the cex setting. The root cause is that par(cex=0.5) > alters cexbase for the device but sets cex=1.0, and the internal > text plotting routines use cex and not cexbase. > > The obvious fix is to set cex to cexbase in do_identify. However, > if this is fixed, there is another problem, The offset of the label > is related to the cex in use for the labe...
2004 Mar 22
1
persp(), axis font size
Is there a way to adjust the font size for axis labels when using persp()? The parameter cex works for adjusting the global font size, but I can't seem to make cex.lab or cex.axis work for adjusting these values independently. Or, is there a preferred method for making surface plots in R? I'm using R version 1.8. Thanks, Manuel
2006 Jan 17
1
Font size of axis labels
Hi all, In R, it is not possible to set the font size of axis labels directly (AFAIK). Instead, scaling factors for the font chosen by the graphics device can be supplied. It appears that there is no constant font size for axis labels. My impression is that the axis label font size is scaled internally by R depending on the number of labels given for an axis. In addition to the R-internal
2002 Jun 07
1
Bug list summary (automatic post)
...t --cex=par(cex) by default rather than cex=NA by default (plus corresponding --internal changes to do_mtext in plot.c). --This needs to be done very carefully because (i) the change suggested above --mayhave side-effects in many other pieces of interpreted code --(ii) do_mtext ignores dd->gp.cexbase unlike, for example, do_plot_xy --and anything to do with cexbase needs extreme care. * PR# 820 * Subject: interaction.plot From: "Mark M. Span" <span@psy.uva.nl> Date: Mon, 22 Jan 2001 10:47:39 +0100 --mtext is unscaled by default. It is not clear if this should --use the par(&qu...
2001 Sep 24
1
R-devel Digest V1 #314
...par(cex) by default rather than cex=NA by default (plus corresponding - --internal changes to do_mtext in plot.c). - --This needs to be done very carefully because (i) the change suggested above - --mayhave side-effects in many other pieces of interpreted code - --(ii) do_mtext ignores dd->gp.cexbase unlike, for example, do_plot_xy - --and anything to do with cexbase needs extreme care. * PR# 820 * Subject: interaction.plot From: "Mark M. Span" <span@psy.uva.nl> Date: Mon, 22 Jan 2001 10:47:39 +0100 - --mtext is unscaled by default. It is not clear if this should - --use the p...
2002 Jul 07
1
Bug list summary (automatic post)
...t --cex=par(cex) by default rather than cex=NA by default (plus corresponding --internal changes to do_mtext in plot.c). --This needs to be done very carefully because (i) the change suggested above --mayhave side-effects in many other pieces of interpreted code --(ii) do_mtext ignores dd->gp.cexbase unlike, for example, do_plot_xy --and anything to do with cexbase needs extreme care. * PR# 820 * Subject: interaction.plot From: "Mark M. Span" <span@psy.uva.nl> Date: Mon, 22 Jan 2001 10:47:39 +0100 --mtext is unscaled by default. It is not clear if this should --use the par(&qu...
2002 Aug 21
1
Bug list summary (automatic post)
...t --cex=par(cex) by default rather than cex=NA by default (plus corresponding --internal changes to do_mtext in plot.c). --This needs to be done very carefully because (i) the change suggested above --mayhave side-effects in many other pieces of interpreted code --(ii) do_mtext ignores dd->gp.cexbase unlike, for example, do_plot_xy --and anything to do with cexbase needs extreme care. * PR# 820 * Subject: interaction.plot From: "Mark M. Span" <span@psy.uva.nl> Date: Mon, 22 Jan 2001 10:47:39 +0100 --mtext is unscaled by default. It is not clear if this should --use the par(&qu...
2002 Sep 21
1
Bug list summary (automatic post)
...t --cex=par(cex) by default rather than cex=NA by default (plus corresponding --internal changes to do_mtext in plot.c). --This needs to be done very carefully because (i) the change suggested above --mayhave side-effects in many other pieces of interpreted code --(ii) do_mtext ignores dd->gp.cexbase unlike, for example, do_plot_xy --and anything to do with cexbase needs extreme care. * PR# 820 * Subject: interaction.plot From: "Mark M. Span" <span@psy.uva.nl> Date: Mon, 22 Jan 2001 10:47:39 +0100 --mtext is unscaled by default. It is not clear if this should --use the par(&qu...
1999 Dec 03
1
R-help Digest V1 #34
...used. 3a) Even more S compatibility: Setting par(mkh) or <highlevelplot>(* , mkh = ..) changes "cex" accordingly *IF* pch=<numeric> . 3b) Similar but more logical; need some "notation" : The symbol size used in the core function plot.xy() is cexbase * Pcex (--> plot.c, l.1089) where "cexbase" is par("cex") and Pcex is the "cex" argument of plot(),points(),... Now we could change this to cexbase * mkh * Pcex for the case of numeric pch (internally pch <= 31 or something) where...