From 8f53c0368380fd484f1d6ae65dd80b0607a9c480 Mon Sep 17 00:00:00 2001 From: Tyler Chafin Date: Fri, 9 Feb 2024 14:58:03 +0000 Subject: [PATCH] Update cli.py --- autostreamtree/cli.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/autostreamtree/cli.py b/autostreamtree/cli.py index 3e99203..749eaa3 100755 --- a/autostreamtree/cli.py +++ b/autostreamtree/cli.py @@ -294,8 +294,8 @@ def main(): if params.run == "RUNLOCI": geoDF = geoDF.merge(sdD, on='EDGE_ID') geoDF.plot(column="stdevD", cmap="RdYlGn_r", legend=True) - plt.title("Stream network colored by standard deviation of", - "StreamTree fitted distances") + plt.title("Stream network colored by standard deviation of"+ + " StreamTree fitted distances") plt.savefig((str(params.out)+".streamsBystdevD.pdf")) geoDF.plot(column="fittedD", cmap="RdYlGn_r", legend=True) plt.title("Stream network colored by StreamTree fitted distances")