0
プロット上の平均点を示すABLINEを作成したいとします。 As shown in the image。GGFORTIFYを使用してプロットの平均を示す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.
は、いくつかは、これを行う方法の私をアドバイスをしてくださいでした。
を使用すると、[再現可能な例](http://stackoverflow.com/questions/5963269/how-to-を提供する場合それはあなたを助けるために簡単ですmake-a-great-r-reproducible-example)をサンプル入力データと比較します。 – MrFlick