You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
julia> plot!(stl_object[:time_series][:,1], label = "seasonal", c = "red")
29
-
julia> plot!(stl_object[:time_series][:,2], label = "trend", c = "blue")
30
-
julia> plot!(stl_object[:time_series][:,3], label = "remainder", c = "green")
31
31
```
32
32
33
33
"""
@@ -48,15 +48,14 @@ end
48
48
R function that decompose a time series into seasonal, trend and irregular components using loess. Decompose a time series into seasonal, trend and remainder components. Allows for multiple seasonal components with different periods.
49
49
50
50
Examples:
51
-
```jldoctest
51
+
```julia-repl
52
52
julia> T = 10*12;
53
+
53
54
julia> x = 0.01*(1:T) .+ sin.((1:T)*(2pi/12)) .+ sin.((1:T)*(2pi/365.25)) .+ 0.2*randn(T)
0 commit comments