Skip to content

Commit

Permalink
mv TroutPlot to code; make executable
Browse files Browse the repository at this point in the history
  • Loading branch information
awickert committed Oct 13, 2022
1 parent 1ca5c7d commit 1b43543
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion TroutPlot.py → code/TroutPlot.py
Original file line number Diff line number Diff line change
Expand Up @@ -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) )
Expand Down

0 comments on commit 1b43543

Please sign in to comment.