使用ggplot2中的scale_x_date格式化日期

时间:2012-05-13 23:43:04

标签: r date formatting ggplot2

在以前版本的ggplot2中,我能够使用以下两个命令之一来格式化我的x日期: 任

scale_x_date(breaks = "1 month", minor_breaks = "1 week", labels=(date_format="%B")) +

scale_x_date(major="months", minor="weeks", format="%B") +

生成完整月份名称的“%B”格式。

(我担心我再也无法区分哪一个有效,因为它们都被注释掉了。)

我不记得何时,但在ubuntu 12.04升级中更新R或ggplot之后,这对我来说不再适用。现在,完全相同的数据会产生错误:

Error in scale_labels.continuous(scale) : 
  Breaks and labels are different lengths

使用第一个和

Error in continuous_scale(aesthetics, "date", identity, breaks = breaks,  : 
  unused argument(s) (major = "months", minor = "weeks", format = "%B")

第二个。

如果我删除labels =参数,并应用

scale_x_date(breaks = "1 month", minor_breaks = "1 week") +

每个月的第一天产生日期格式“YYYY-MM-DD”。

咨询函数帮助?scale_x_date,我也尝试了以下内容:

scale_x_date(breaks = "1 month", minor_breaks = "1 week", labels=date_format("%B")) +

但是这会产生这个错误:

Error in structure(list(call = match.call(), aesthetics = aesthetics,  : 
  could not find function "date_format"

如何在x轴上实现月份名称“%B”格式化? (如果您对产生这些错误消息的机制有任何其他见解,我也会很感激。)

2 个答案:

答案 0 :(得分:58)

没关系,答案是使用文档中的版本

scale_x_date(breaks = "1 month", minor_breaks = "1 week", labels=date_format("%B")) +

并将library(scales)包含在documentation中。

答案 1 :(得分:50)

使用新的ggplot2 v 2.0.0,一种方法是:

scale_x_date(date_breaks = "1 month", date_minor_breaks = "1 week", date_labels = "%B")