仅在R中将ggplot上的x轴显示为月份

时间:2013-05-16 20:24:41

标签: r ggplot2

我这里有一个非常简单的问题。我有一个来自2009-2012的数据集。我想用facet绘制数据。我创建了多面图,如下所示。

R-代码

ggplot(al02428400,aes(x=date,y=as.numeric(Discharge)))+geom_line()+ylab("Discharge(cfs)")+facet_wrap(~Year,scales=("free_x"))+theme_bw()

上述R代码的输出如下:

enter image description here

在X轴上我只想显示月份。默认情况下,它显示月份和年份。有什么方法可以摆脱一年吗?

完全可重现的代码如下:

library(ggplot2)

url <- "http://nwis.waterdata.usgs.gov/usa/nwis/uv/?cb_00060=on&cb_00065=on&format=rdb&period=&begin_date=2009-01-01&end_date=2012-12-31&site_no=02428400"
download.file(url,destfile="Data load for stations/data/alabamariver-at-monroeville-2009.txt")

al02428400 <- read.table("Data load for stations/data/alabamariver-at-monroeville-2009.txt",header=T,skip=1,sep="\t")
head(al02428400)

sapply(al02428400,class)
al02428400 <- al02428400[-1,]

names(al02428400)<- c("Agency","SiteNo","Datetime", "TZ","Discharge","Status","Gageheight","gstatus")
al02428400$date <- strptime(al02428400$Datetime, format="%Y-%m-%d %H:%M")

al02428400$Discharge <- as.numeric(as.character(al02428400$Discharge))
al02428400$Year <- as.numeric(format(al02428400$date, "%Y"))
ggplot(al02428400,aes(x=date,y=as.numeric(Discharge)))+geom_line()+ylab("Discharge(cfs)")+facet_wrap(~Year,scales=("free_x"))+theme_bw()

感谢。

2 个答案:

答案 0 :(得分:15)

由于您的x值是日期,因此您可以使用scale_x_date()更改标签的格式。需要库scales才能更好地格式化中断和标签。

library(scales)
+scale_x_datetime(labels = date_format("%b"))

答案 1 :(得分:1)

对我来说,有效的方法是

+ scale_x_date(date_labels = "%b-%d-%Y")

更多信息here