decor {fBasics} | R Documentation |
Functions for decorating plots.
The plot utility functions are:
decor | simple decoration function, |
hgrid | creates horizontal grid lines, |
vgrid | creates vertical grid lines, |
boxL | creates a L-shaped box, |
box_ | creates a bogttom line box, |
copyright | adds Rmetrics copyright to a plot. |
decor() hgrid(ny = NULL, ...) vgrid(nx = NULL, ...) boxL(col = "white") box_(col = c("white", "black")) copyright()
col |
the color of the background, |
nx, ny |
number of cells of the grid in x or y direction. When |
... |
additional arguments passed to the |
## Test Plot Function: plot(x = rnorm(100), type = "l", col = "red", xlab = "", ylab = "Variates", las = 1) title("Normal Deviates", adj = 0) hgrid() boxL() copyright()