minorTics {RSurvey} | R Documentation |
Adds minor axis tic marks to the active plot.
minorTics(side, loc.tics = NULL)
side |
an array of integers specifying the plot sides for the axis to be drawn. |
loc.tics |
the location of the major tic marks. |
The plot sides are designated as: 1 = below, 2 = left, 3 = above, and 4 = right.
Fisher, J. C. and J. Lewis
plot(1:10) minorTics(1) minorTics(2, loc.tics=4:8) minorTics(3, c(4, 6, 8))