我怎样才能避免剪掉我的xticks?

时间:2017-03-19 20:29:12

标签: r ggplot2

我正在绘制一些具有相关日期的数据。然而,最苛刻的xtick(2017年4月)被剪裁,因为xtick太长了。

除了旋转或重新格式化刻度之外,我怎样才能避免这种裁剪?

enter image description here

1 个答案:

答案 0 :(得分:3)

hjust中的theme(axis.text=参数可以满足您的需求:

library(ggplot2)
library(lubridate)
s <- c(320,790,810,820,780,780,680,700,600,380,420,620,310)
d <- seq(ymd('2016-03-01'),ymd('2017-03-01'), by = '1 month')
df <- data.frame(Date=d,No.Sales=s)

ggplot(df) + geom_bar(aes(Date,No.Sales),stat="identity") + 
             theme_bw() + 
             labs(title="Condo Sales",
                  subtitle="Montly counts of condo sales in Toronto") +
             theme(panel.border = element_blank(),
                   axis.text=element_text( hjust=1) ) 

产量:

enter image description here