2017-03-29 12 views
0

プロット上の平均点を示すABLINEを作成したいとします。 As shown in the imageGGFORTIFYを使用してプロットの平均を示すABLINEをプロットする

d.sales <- diff(sales) 
plot(d.sales) 
abline(h=mean(d.sales)) 

しかし、私がggfortifyを使ってこのプロットをカスタマイズしたとき、この結果を再現する方法がわかりません。

ここにコードがあります。

Differencingplot1 <- autoplot(d.sales, ts.colour = 'dodgerblue3', ts.size = (1.5)) 

Differencingplot1 + ggtitle("Seaosnal Differencing - Attempt 1") + xlab("Year-Quarterly") + ylab("Difference in Sales") 

そして結果The result shown.

は、いくつかは、これを行う方法の私をアドバイスをしてくださいでした。

+0

を使用すると、[再現可能な例](http://stackoverflow.com/questions/5963269/how-to-を提供する場合それはあなたを助けるために簡単ですmake-a-great-r-reproducible-example)をサンプル入力データと比較します。 – MrFlick

答えて

0

geom_hlineggplot2です。

は比較:

ggplot(iris,aes(x=Sepal.Length,y=Sepal.Width)) + geom_point() 

ggplot(iris,aes(x=Sepal.Length,y=Sepal.Width)) + geom_point() + 
    geom_hline(aes(yintercept=mean(Sepal.Width))) 
関連する問題