ggplot tick size code example
Example: change tick size ggplot
ggplot(data, aes(x,y)) +
geom_point() +
theme(axis.ticks.length=unit(.25, "cm"))
ggplot(data, aes(x,y)) +
geom_point() +
theme(axis.ticks.length=unit(.25, "cm"))