Skip to content

Commit

Permalink
update text
Browse files Browse the repository at this point in the history
  • Loading branch information
yoninazarathy committed Jul 20, 2020
1 parent 4bdcaaa commit f6287ed
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions 8_chapter/autocorrelation.jl
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@ lags = 1:50
acc = autocor(diffs,lags)

default(legend = false)
p1 = plot(diffs,xlabel="Day",ylabel="Difference Between Corrected Days")
p2 = plot(lags,acc,line=:stem,xlabel="Lag",ylabel="Autocorrelation")
p1 = plot(diffs, c=:blue,
xlabel="Day",ylabel="Difference Between Corrected Days")
p2 = plot(lags,acc,line=:stem, c=:blue,
xlabel="Lag",ylabel="Autocorrelation")
plot(p1,p2,size=(900,400),margin = 5mm)

0 comments on commit f6287ed

Please sign in to comment.