From 32596da6006b741974fbad1512670a9984cd1d0b Mon Sep 17 00:00:00 2001 From: "Edgar P. Burkhart" Date: Fri, 4 Mar 2022 11:23:27 +0100 Subject: [PATCH] Added markers to reflection plot --- swash/processing/post.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/swash/processing/post.py b/swash/processing/post.py index 512950c..8249848 100644 --- a/swash/processing/post.py +++ b/swash/processing/post.py @@ -70,8 +70,8 @@ fig.tight_layout() fig_r, ax_r = plt.subplots() -ax_r.plot(1 / phi_eta[0, 1:], R[1:]) -ax_r.set(xlim=(1,30), ylim=(0, 1), xlabel="t (s)", ylabel="R") +ax_r.plot(1 / phi_eta[0, 1:], R[1:], marker="+", lw=1) +ax_r.set(xlim=(1, 30), ylim=(0, 1), xlabel="t (s)", ylabel="R") ax_r.grid() fig_x, ax_x = plt.subplots()