"2013-07-01 00:30:00" の形式で x 軸のラベルを変更するにはどうすればよいですか?
library(ggplot2)
a<-as.POSIXlt("2013-07-01 00:30:00")
b<-as.POSIXlt("2013-07-5 00:30:00")
aI<-as.numeric(a)
bI<-as.numeric(b)
times<-sample(seq(aI,bI,by=2),100)
ggplot(, aes(x=times)) +
geom_histogram(aes(y=..count..),binwidth=10000, colour="black") +
theme(axis.text.x = element_text(angle=45))
そして、次のような曲線を追加する関数を探しています
geom_density(alpha=.2, fill="#FF6666")
しかし、上のプロットでは、曲線が ..count.. プロパティに適合するようになっています。