仅标记选定的中断

时间:2014-10-11 08:55:50

标签: r ggplot2

由于轴上的空间限制(对数转换),我想在显示连续序列的中断时标记选择中断。当然,以下结果会导致错误:

scale_x_continuous(breaks=c(-10,0,10,20,30),labels=c(-10,0,10,30))

Error: breaks and labels have unequal lengths

有没有办法解决这个问题?

1 个答案:

答案 0 :(得分:7)

请尝试:

scale_x_continuous(breaks=c(-10,0,10,20,30), labels=c(-10,0,10,"",30))