astsa (version 1.10)

Grid: A Better Add Grid to a Plot

Description

Adds a grid to an existing plot with major and minor ticks. Works like R graphics grid() but the grid lines are are solid and gray and minor ticks are produced by default.

Usage

Grid(nx = NULL, ny = nx, col = gray(0.9), lty = 1, lwd = par("lwd"), equilogs = TRUE, 
     minor = TRUE, nxm = 2, nym = 2, tick.ratio = 0.5, ...)

Arguments

nx, ny

number of cells of the grid in x and y direction. When NULL, as per default, the grid aligns with the tick marks on the corresponding default axis (i.e., tickmarks as computed by axTicks). When NA, no grid lines are drawn in the corresponding direction.

col

color of the grid lines.

lty

line type of the grid lines.

lwd

line width of the grid lines.

equilogs

logical, only used when log coordinates and alignment with the axis tick marks are active. Setting equilogs = FALSE in that case gives non equidistant tick aligned grid lines.

minor

logical with TRUE (default) adding minor ticks.

nxm, nym

number of intervals in which to divide the area between major tick marks on the x-axis (y-axis). If minor=TRUE, should be > 1 or no minor ticks will be drawn.

tick.ratio

ratio of lengths of minor tick marks to major tick marks. The length of major tick marks is retrieved from par("tck").

other graphical parameters;

Details

I combined the code for grid() in the graphics package and minor.tick() from the Hmisc package, and changed the default grid line type and color. I made this basically for instructional purposes so students don't have to watch me type for and additional 5 minutes to get a grid with solid lines and with minor ticks on a plot.

References

The code for grid() in R graphics and minor.tick() from the Hmisc package were combined.

See Also

grid