I have a plot using ggplot2 in which I\'d like many ticks along the x-axis, yet only some of the ticks will have tick labels associated with them. However, I\'d like the tic
In base R, you can suppress the x-axis with the initial plot call (with xaxt='n'), and then use tcl to control tick length (see ?par) with two axis(1, ...) calls.