search for: localtitl

Displaying 2 results from an estimated 2 matches for "localtitl".

Did you mean: localtitle
2008 Apr 22
1
plot(x) in 2.7.0 (with y=NULL) proposed code correction
...ctors, so exclude them ## Also, axis and box accept some of these localAxis <- function(..., col, bg, pch, cex, lty, lwd) Axis(...) localBox <- function(..., col, bg, pch, cex, lty, lwd) box(...) localWindow <- function(..., col, bg, pch, cex, lty, lwd) plot.window(...) localTitle <- function(..., col, bg, pch, cex, lty, lwd) title(...) if (!is.null(y)) { ## normal plot x against y xlabel <- if (!missing(x)) deparse(substitute(x)) ylabel <- deparse(substitute(y)) xy <- xy.coords(x, y, xlabel, ylabel, log) xlab <- i...
2008 Mar 09
2
[patch] add=TRUE in plot.default()
..., so exclude them ## Also, axis and box accept some of these localAxis <- function(..., col, bg, pch, cex, lty, lwd) Axis(...) localBox <- function(..., col, bg, pch, cex, lty, lwd) box(...) localWindow <- function(..., col, bg, pch, cex, lty, lwd) plot.window(...) localTitle <- function(..., col, bg, pch, cex, lty, lwd) title(...) - xlabel <- if (!missing(x)) deparse(substitute(x)) - ylabel <- if (!missing(y)) deparse(substitute(y)) xy <- xy.coords(x, y, xlabel, ylabel, log) xlab <- if (is.null(xlab)) xy$xlab else xlab ylab <- if...