@@ -623,65 +623,70 @@ function plot_epost_vs_t(error_file, closure_name, nles, ax, color, PLOT_STYLES)
623623 x = error_data. nts # use time from error data
624624
625625 # Prior
626- lines ! (
626+ scatterlines ! (
627627 ax,
628628 x,
629629 vec (error_data. model_prior);
630630 label = " $closure_name prior (n = $nles )" ,
631631 color = color,
632632 linestyle = PLOT_STYLES[:prior ]. linestyle,
633633 linewidth = PLOT_STYLES[:prior ]. linewidth,
634+ marker = :circle ,
634635 )
635636
636637 # Post
637- lines ! (
638+ scatterlines ! (
638639 ax,
639640 x,
640641 vec (error_data. model_post);
641642 label = " $closure_name post (n = $nles )" ,
642643 color = color,
643644 linestyle = PLOT_STYLES[:post ]. linestyle,
644645 linewidth = PLOT_STYLES[:post ]. linewidth,
646+ marker = :circle ,
645647 )
646648
647649 # Smagorinsky (optional)
648650 if haskey (error_data, Symbol (" smag" ))
649- lines ! (
651+ scatterlines ! (
650652 ax,
651653 x,
652654 vec (error_data. smag);
653655 label = " $closure_name smag (n = $nles )" ,
654656 color = PLOT_STYLES[:smag ]. color,
655657 linestyle = PLOT_STYLES[:smag ]. linestyle,
656658 linewidth = PLOT_STYLES[:smag ]. linewidth,
659+ marker = :circle ,
657660 )
658661 end
659662
660663 if closure_name == " INS_ref"
661664 label = " No model"
662665 if _missing_label (ax, label) # add No closure only once
663- lines ! (
666+ scatterlines ! (
664667 ax,
665668 x,
666669 vec (error_data. nomodel);
667670 label = label,
668671 linestyle = PLOT_STYLES[:no_closure ]. linestyle,
669672 linewidth = PLOT_STYLES[:no_closure ]. linewidth,
670673 color = PLOT_STYLES[:no_closure ]. color,
674+ marker = :circle ,
671675 )
672676 end
673677 end
674678
675679 label = " No model (projected dyn)"
676680 if _missing_label (ax, label) # add No closure only once
677- lines ! (
681+ scatterlines ! (
678682 ax,
679683 x,
680684 vec (error_data. nomodel);
681685 label = label,
682686 linestyle = PLOT_STYLES[:no_closure_proj ]. linestyle,
683687 linewidth = PLOT_STYLES[:no_closure_proj ]. linewidth,
684688 color = PLOT_STYLES[:no_closure_proj ]. color,
689+ marker = :circle ,
685690 )
686691 end
687692
0 commit comments