@@ -211,7 +211,13 @@ u_init = get_u_prior(ekiobj)
211211anim_eki_unconst_cloudy = @animate for i in 1 : (n_iter - 1 )
212212 u_i = get_u(ekiobj, i)
213213
214- p1 = Plots. plot(u_i[1 , :], u_i[2 , :], seriestype = :scatter, xlims = extrema(u_init[1 , :]), ylims = extrema(u_init[2 , :]))
214+ p1 = Plots. plot(
215+ u_i[1 , :],
216+ u_i[2 , :],
217+ seriestype = :scatter,
218+ xlims = extrema(u_init[1 , :]),
219+ ylims = extrema(u_init[2 , :]),
220+ )
215221 Plots. plot!(
216222 p1,
217223 [θ_true[1 ]],
@@ -226,7 +232,13 @@ anim_eki_unconst_cloudy = @animate for i in 1:(n_iter - 1)
226232 )
227233 Plots. plot!(p1, [θ_true[2 ]], seriestype = " hline" , linestyle = :dash, linecolor = :red, label = " optimum" )
228234
229- p2 = Plots. plot(u_i[2 , :], u_i[3 , :], seriestype = :scatter, xlims = extrema(u_init[2 , :]), ylims = extrema(u_init[3 , :]))
235+ p2 = Plots. plot(
236+ u_i[2 , :],
237+ u_i[3 , :],
238+ seriestype = :scatter,
239+ xlims = extrema(u_init[2 , :]),
240+ ylims = extrema(u_init[3 , :]),
241+ )
230242 Plots. plot!(
231243 p2,
232244 [θ_true[2 ]],
@@ -242,7 +254,13 @@ anim_eki_unconst_cloudy = @animate for i in 1:(n_iter - 1)
242254
243255 Plots. plot!(p2, [θ_true[3 ]], seriestype = " hline" , linestyle = :dash, linecolor = :red, label = " optimum" )
244256
245- p3 = Plots. plot(u_i[3 , :], u_i[1 , :], seriestype = :scatter, xlims = extrema(u_init[3 , :]), ylims = extrema(u_init[1 , :]))
257+ p3 = Plots. plot(
258+ u_i[3 , :],
259+ u_i[1 , :],
260+ seriestype = :scatter,
261+ xlims = extrema(u_init[3 , :]),
262+ ylims = extrema(u_init[1 , :]),
263+ )
246264 Plots. plot!(
247265 p3,
248266 [θ_true[3 ]],
@@ -268,7 +286,13 @@ gif(anim_eki_unconst_cloudy, joinpath(output_directory, "cloudy_eki_unconstr.gif
268286anim_eki_cloudy = @animate for i in 1 : (n_iter - 1 )
269287 ϕ_i = get_ϕ(priors, ekiobj, i)
270288
271- p1 = Plots. plot(ϕ_i[1 , :], ϕ_i[2 , :], seriestype = :scatter, xlims = extrema(ϕ_init[1 , :]), ylims = extrema(ϕ_init[2 , :]))
289+ p1 = Plots. plot(
290+ ϕ_i[1 , :],
291+ ϕ_i[2 , :],
292+ seriestype = :scatter,
293+ xlims = extrema(ϕ_init[1 , :]),
294+ ylims = extrema(ϕ_init[2 , :]),
295+ )
272296 Plots. plot!(
273297 p1,
274298 [ϕ_true[1 ]],
@@ -284,7 +308,13 @@ anim_eki_cloudy = @animate for i in 1:(n_iter - 1)
284308
285309 Plots. plot!(p1, [ϕ_true[2 ]], seriestype = " hline" , linestyle = :dash, linecolor = :red, label = " optimum" )
286310
287- p2 = Plots. plot(ϕ_i[2 , :], ϕ_i[3 , :], seriestype = :scatter, xlims = extrema(ϕ_init[2 , :]), ylims = extrema(ϕ_init[3 , :]))
311+ p2 = Plots. plot(
312+ ϕ_i[2 , :],
313+ ϕ_i[3 , :],
314+ seriestype = :scatter,
315+ xlims = extrema(ϕ_init[2 , :]),
316+ ylims = extrema(ϕ_init[3 , :]),
317+ )
288318
289319 Plots. plot!(
290320 p2,
@@ -301,7 +331,13 @@ anim_eki_cloudy = @animate for i in 1:(n_iter - 1)
301331
302332 Plots. plot!(p2, [ϕ_true[3 ]], seriestype = " hline" , linestyle = :dash, linecolor = :red, label = " optimum" )
303333
304- p3 = Plots. plot(ϕ_i[3 , :], ϕ_i[1 , :], seriestype = :scatter, xlims = extrema(ϕ_init[3 , :]), ylims = extrema(ϕ_init[1 , :]))
334+ p3 = Plots. plot(
335+ ϕ_i[3 , :],
336+ ϕ_i[1 , :],
337+ seriestype = :scatter,
338+ xlims = extrema(ϕ_init[3 , :]),
339+ ylims = extrema(ϕ_init[1 , :]),
340+ )
305341 Plots. plot!(
306342 p3,
307343 [ϕ_true[3 ]],
0 commit comments