Closed joannekoch closed 7 months ago
Fixes the HRS2303 Underway EP:
The error: read_csv() got an unexpected keyword argument 'na_rep' underway.py on the line: df = pd.read_csv(os.path.join(csv_dir, file), header=[0], na_values=[' NAN', ' NODATA'] , na_rep='NaN')
df = pd.read_csv(os.path.join(csv_dir, file), header=[0], na_values=[' NAN', ' NODATA'] , na_rep='NaN')
Sets the 'date' column NaN values to the empty string per issue #116 .
Fixes the HRS2303 Underway EP:
The error: read_csv() got an unexpected keyword argument 'na_rep' underway.py on the line:
df = pd.read_csv(os.path.join(csv_dir, file), header=[0], na_values=[' NAN', ' NODATA'] , na_rep='NaN')
Sets the 'date' column NaN values to the empty string per issue #116 .