Skip to content

Commit

Permalink
fix tsdecomposition
Browse files Browse the repository at this point in the history
  • Loading branch information
meggart committed Jun 16, 2023
1 parent 12b8460 commit 99264bd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/TSDecomposition.jl
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ in 4 time windows (Trend, Long-Term Variability, Annual Cycle, Fast Oscillations
"""
function filterTSFFT(c;kwargs...)
indims = InDims("time",filter=AnyMissing())
outdims = OutDims("time",(c,p)->CategoricalAxis("Scale",["Trend", "Long-Term Variability", "Annual Cycle", "Fast Oscillations"]))
outdims = OutDims("time",CategoricalAxis("Scale",["Trend", "Long-Term Variability", "Annual Cycle", "Fast Oscillations"]))
ntime = length(getAxis("Time",c))
plans = map(workers()) do id
remotecall(id,ntime,eltype(c)) do nt,et
Expand Down

0 comments on commit 99264bd

Please sign in to comment.