File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -156,17 +156,17 @@ end
156156end
157157
158158@recipe function f (sim:: EnsembleSummary ;
159- trajectories = sim. u[1 ] isa AbstractArray ? eachindex (sim. u[1 ]) :
159+ trajectories = sim. u. u [1 ] isa AbstractArray ? eachindex (sim. u . u[1 ]) :
160160 1 ,
161161 error_style = :ribbon , ci_type = :quantile )
162162 if ci_type == :SEM
163- if sim. u[1 ] isa AbstractArray
163+ if sim. u. u [1 ] isa AbstractArray
164164 u = vecarr_to_vectors (sim. u)
165165 else
166166 u = [sim. u. u]
167167 end
168- if sim. u[1 ] isa AbstractArray
169- ci_low = vecarr_to_vectors (VectorOfArray ([sqrt .(sim. v[i] / sim. num_monte) .*
168+ if sim. u. u [1 ] isa AbstractArray
169+ ci_low = vecarr_to_vectors (VectorOfArray ([sqrt .(sim. v. u [i] / sim. num_monte) .*
170170 1.96 for i in 1 : length (sim. v)]))
171171 ci_high = ci_low
172172 else
180180 else
181181 u = [sim. med. u]
182182 end
183- if sim. u[1 ] isa AbstractArray
183+ if sim. u. u [1 ] isa AbstractArray
184184 ci_low = u - vecarr_to_vectors (sim. qlow)
185185 ci_high = vecarr_to_vectors (sim. qhigh) - u
186186 else
You can’t perform that action at this time.
0 commit comments