我正在尝试按周和月绘制时间序列数据;理想情况下,我想,我想使用箱线图来可视化按周分类的每日数据。虽然我可以使用 更改 x 轴上的标签和网格线scale_x_date
,但这不会影响图中的点。
这是问题的演示和我当前的(笨拙的)解决方案。
library(zoo)
library(ggplot2)
d = as.Date(c(as.Date("2007-06-01"):as.Date("2008-05-31"))) # using zoo to reformat numeric
x = runif(366, min = 0, max = 100)
df = data.frame(d,x)
# PROBLEM #
p = ggplot(df, aes(d, x))
p + geom_point()
p + geom_boxplot() # more or less useless
# CURRENT FIX #
df$Year.Month <- format(df$d, "%Y-%m")
p = ggplot(df, aes(Year.Month, x))
p + geom_point(alpha = 0.75)
p + geom_boxplot() # where I'm trying to get to...
我确信有一种更优雅的方式可以从内部做到这一点ggplot
。我对吗?
@shadow 下面的答案要简洁得多。但是有没有办法使用分箱来做到这一点?stats
也许以某种形式使用?