From 1b435435b5be9fabe5ee75cde8dedfe94aa8d420 Mon Sep 17 00:00:00 2001 From: Andy Wickert Date: Thu, 13 Oct 2022 00:09:21 -0500 Subject: [PATCH] mv TroutPlot to code; make executable --- TroutPlot.py => code/TroutPlot.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename TroutPlot.py => code/TroutPlot.py (98%) diff --git a/TroutPlot.py b/code/TroutPlot.py similarity index 98% rename from TroutPlot.py rename to code/TroutPlot.py index 3801fb1..63e845f 100755 --- a/TroutPlot.py +++ b/code/TroutPlot.py @@ -12,7 +12,7 @@ ############################### df = None -for infilename in sorted(glob.glob('data/Log*.txt')): +for infilename in sorted(glob.glob('../data/Log*.txt')): print( infilename, end='; number of data entries: ') _df = pd.read_csv(infilename, header=1, infer_datetime_format=True, parse_dates=True, index_col='Time [UTC]', dtype=float, na_values=[' NAN', 50]) print( len(_df) )