From 2438231722f68d83fd0a7d138e82a749959f1ac3 Mon Sep 17 00:00:00 2001 From: Patrick McGuire Date: Thu, 2 Dec 2021 08:45:31 -0500 Subject: [PATCH] putting charts in Charts dir --- scripts/daily_plot.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/daily_plot.py b/scripts/daily_plot.py index e8fe6af..f4741c1 100755 --- a/scripts/daily_plot.py +++ b/scripts/daily_plot.py @@ -105,7 +105,7 @@ f.subplots_adjust(top=0.9) plt.suptitle("Last Updated: "+ str(now.strftime("%B, %d at %I:%M%P"))) #Save combined plot -savename='/home/pi/BirdSongs/Extracted/Combo-'+str(now.strftime("%d-%m-%Y"))+'.png' +savename='/home/pi/BirdSongs/Extracted/Charts/Combo-'+str(now.strftime("%d-%m-%Y"))+'.png' plt.savefig(savename) plt.close() @@ -148,7 +148,7 @@ f.subplots_adjust(top=0.9) plt.suptitle("Bottom 10 Detected: "+ str(now.strftime("%d-%h-%Y %H:%M"))) plot.set(xlabel="Hour of Day") #Save combined plot -savename='/home/pi/BirdSongs/Extracted/Combo2-'+str(now.strftime("%d-%m-%Y"))+'.png' +savename='/home/pi/BirdSongs/Extracted/Charts/Combo2-'+str(now.strftime("%d-%m-%Y"))+'.png' plt.savefig(savename) plt.close()