如何增加x轴两点之间的差距

时间:2014-03-27 04:18:46

标签: r graph ggplot2

enter image description here

我有一个如上图所示的图表,生成它的代码是

ggplot(time_stamp, aes(x=TimeZ,y=Freq,group=1)) + geom_line() + 
geom_point(colour = 'red', size = 4) +
ylab("Freq of Viewers") +
theme(axis.text.x =  element_text(colour="grey20",size=12,angle=0,hjust=.5,vjust=.5,face="plain"),
axis.text.y =  element_text(colour="grey20",size=12,angle=0,hjust=1,vjust=0,face="plain")) + 
ggtitle("Time vs Freq of Viewers") 

现在我想增加x轴上两点之间的差距。即。增加T00和T01或T15和T16之间的间隙,使其看起来很漂亮。

0 个答案:

没有答案