search for: 52a53

Displaying 3 results from an estimated 3 matches for "52a53".

Did you mean: 5253
2000 Oct 27
1
par(ask=T) in termplot() (PR#711)
...that the first 2 plots cannot be really visualized. Here is a proposed modification for this function: $ diff plot.lm.R plot.lm.new.R 7c7 < ask = interactive() && one.fig && length(which) > 1 --- > ask = interactive() && nb.fig < length(which) 52a53 > nb.fig <- prod(par("mfcol")) The modification for termplot() follows in the same way: $ diff termplot.R termplot.new.R 3a4,5 > ask = interactive() && nb.fig < n.tms > && .Device != "postscript", 46a49,55...
2000 Oct 25
2
par(ask=T) in termplot()
Hi, I think it would be nice to have par(ask=T) set by default in termplot(), like it is in plot.lm(). Best, Emmanuel Paradis -.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.- r-devel mailing list -- Read http://www.ci.tuwien.ac.at/~hornik/R/R-FAQ.html Send "info", "help", or "[un]subscribe" (in the "body", not the subject !)
2003 May 02
2
Suppressing Scientific Notation
...ace : "F"(Fixpt) fmt */ 421c421 < if (mF <= *mi) { /* IFF it needs less space : "F" (Fixpoint) format */ --- > if (mF <= *mi + R_print.scipen) { /* IFF less space : "F"(Fixpt) fmt */ diff -r R-1.7.0/src/main/options.c R-1.7.0.mod/src/main/options.c 52a53 > * "scipen" 136a138,140 > int GetOptionSciPen(SEXP rho) { > return asInteger(GetOption(install("scipen"), rho)); > } 235a240,243 > SET_TAG(v, install("scipen")); > SETCAR(v, ScalarInteger(0)); > v = CDR(v); > 374a383,386 >...