1\name{decor} 2 3\alias{decor} 4\alias{hgrid} 5\alias{vgrid} 6\alias{boxL} 7\alias{box_} 8\alias{copyright} 9 10\title{Decor Functions} 11 12 13\description{ 14 15 Functions for decorating plots. 16 \cr 17 18 The plot utility functions are: 19 20 \tabular{ll}{ 21 \code{decor} \tab simple decoration function, \cr 22 \code{hgrid} \tab creates horizontal grid lines, \cr 23 \code{vgrid} \tab creates vertical grid lines, \cr 24 \code{boxL} \tab creates a L-shaped box, \cr 25 \code{box_} \tab creates a bogttom line box, \cr 26 \code{copyright} \tab adds Rmetrics copyright to a plot. } 27 28} 29 30 31\usage{ 32decor() 33 34hgrid(ny = NULL, ...) 35vgrid(nx = NULL, ...) 36 37boxL(col = "white") 38box_(col = c("white", "black")) 39 40copyright() 41} 42 43 44\arguments{ 45 46 \item{col}{ 47 the color of the background, \code{"black"} and foreground 48 \code{"white"} lines of the box. 49 } 50 \item{nx, ny}{ 51 number of cells of the grid in x or y direction. When \code{NULL}, 52 as per default, the grid aligns with the tick marks on the 53 corresponding default axis (i.e., tickmarks as computed by axTicks). 54 } 55 \item{\dots}{ 56 additional arguments passed to the \code{grid()} function. 57 } 58 59} 60 61 62\examples{ 63## Test Plot Function: 64 plot(x = rnorm(100), type = "l", col = "red", 65 xlab = "", ylab = "Variates", las = 1) 66 title("Normal Deviates", adj = 0) 67 hgrid() 68 boxL() 69 copyright() 70} 71 72 73\keyword{hplot} 74 75