加长ggplot2

时间:2018-01-30 19:14:32

标签: r ggplot2 graph themes

简单问题我试图延长轴上ggplot2的刻度线 - 怎么样?

plot <- plot + theme(axis.ticks = element_line(colour = "black", size =2))

如果增加尺寸,它似乎只会增加它们的宽度,而不是长度?

1 个答案:

答案 0 :(得分:4)

您需要axis.ticks.length,即

plot + theme(axis.ticks.length = unit(1, "cm"))