Revision 04bbc417cf2927b827660bc07743429783569aec authored by HwB on 10 February 2013, 00:00:00 UTC, committed by Gabor Csardi on 10 February 2013, 00:00:00 UTC
1 parent 0e3ae6b
Raw File
semilog.R
##
##  s e m i l o g . R
##


semilogx <- function(x, y, ...) {
    plot(x, y, log = "x", ...)
    grid()
}


semilogy <- function(x, y, ...) {
    plot(x, y, log = "y", ...)
    grid()
}


loglog <- function(x, y, ...) {
    plot(x, y, log = "xy", ...)
    grid()
}
back to top