由于轴上的空间限制(对数转换),我想在显示连续序列的中断时标记选择中断。当然,以下结果会导致错误:
scale_x_continuous(breaks=c(-10,0,10,20,30),labels=c(-10,0,10,30))
Error: breaks and labels have unequal lengths
有没有办法解决这个问题?
答案 0 :(得分:7)
请尝试:
scale_x_continuous(breaks=c(-10,0,10,20,30), labels=c(-10,0,10,"",30))