Skip to content

Commit da46e28

Browse files
committed
Refine AIDA calib plots
1 parent 37d03f8 commit da46e28

File tree

1 file changed

+26
-2
lines changed

1 file changed

+26
-2
lines changed

papers/ice_nucleation_2024/plots.jl

Lines changed: 26 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -308,16 +308,40 @@ function plot_ICNC_overview(overview_data)
308308
uncertainty = 0.1
309309

310310
overview_fig = MK.Figure(size = (1000, 800), fontsize = 24)
311+
MK.Label(
312+
overview_fig[0, 1],
313+
" DEP ",
314+
font = :bold,
315+
fontsize = 30,
316+
halign = :center, # Horizontal alignment
317+
valign = :top # Vertical alignment (relative to its grid cell)
318+
)
319+
MK.Label(
320+
overview_fig[0, 2],
321+
" IMM ",
322+
font = :bold,
323+
fontsize = 30,
324+
halign = :center, # Horizontal alignment
325+
valign = :top # Vertical alignment (relative to its grid cell)
326+
)
327+
MK.Label(
328+
overview_fig[0, 3],
329+
" HOM ",
330+
font = :bold,
331+
fontsize = 30,
332+
halign = :center, # Horizontal alignment
333+
valign = :top # Vertical alignment (relative to its grid cell)
334+
)
311335

312336
exp_name_list = [
313337
"IN05_17", "IN05_18",
314338
"IN07_01", "IN07_19", "EXP45",
315339
"ACI04_22", "EXP19",
316340
]
317341
position = [
318-
overview_fig[1, 1], overview_fig[2, 1],
319-
overview_fig[1, 2], overview_fig[2, 2], overview_fig[3, 2],
320342
overview_fig[1, 3], overview_fig[2, 3],
343+
overview_fig[1, 1], overview_fig[2, 1], overview_fig[3, 1],
344+
overview_fig[1, 2], overview_fig[2, 2],
321345
]
322346

323347
for (i, exp_name) in enumerate(exp_name_list)

0 commit comments

Comments
 (0)