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
156
156
end
157
157
158
158
@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 ]) :
160
160
1 ,
161
161
error_style = :ribbon , ci_type = :quantile )
162
162
if ci_type == :SEM
163
- if sim. u[1 ] isa AbstractArray
163
+ if sim. u. u [1 ] isa AbstractArray
164
164
u = vecarr_to_vectors (sim. u)
165
165
else
166
166
u = [sim. u. u]
167
167
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) .*
170
170
1.96 for i in 1 : length (sim. v)]))
171
171
ci_high = ci_low
172
172
else
180
180
else
181
181
u = [sim. med. u]
182
182
end
183
- if sim. u[1 ] isa AbstractArray
183
+ if sim. u. u [1 ] isa AbstractArray
184
184
ci_low = u - vecarr_to_vectors (sim. qlow)
185
185
ci_high = vecarr_to_vectors (sim. qhigh) - u
186
186
else
You can’t perform that action at this time.
0 commit comments