gridOverlay {ifultools} | R Documentation |
Overlays a grid on the current plot at the ordinate and abscissa tick markers.
gridOverlay(lty = "dotted", col = "gray", density = 3, ...)
... |
additional arguments passed directly to the par function. |
col |
line color ala par function. Default: "gray" . |
density |
line density ala par function. Default: 3. |
lty |
line type ala par function. Default: "dotted" . |
par
.
## plot the chaotic beam data and overlay a grid old.plt <- splitplot(1,1,1) plot(rnorm(100)) gridOverlay() par(old.plt)