From 4b3e0bdc307d5e38cd568d3e97957a3c06cccaf5 Mon Sep 17 00:00:00 2001 From: Silke Maes Date: Fri, 22 Nov 2024 10:06:26 +0100 Subject: [PATCH] Adjusting marker type --- src/mace/CSE_0D/plotting.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mace/CSE_0D/plotting.py b/src/mace/CSE_0D/plotting.py index f57e076..5eb5f48 100644 --- a/src/mace/CSE_0D/plotting.py +++ b/src/mace/CSE_0D/plotting.py @@ -70,7 +70,7 @@ def plot_abs(model1D, n, n_hat, specs, step = False): marker = 'o' else: ls = '-' - marker = 'none' + marker = '.' ## predicted abundances line, = ax1.plot(r,n_hat[:,idx], ls =ls, marker = marker, label = spec, ms = ms, lw = lw) ## real abundances