Nothing
##
## 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()
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.