Is there a workaround for this, i.e. if the csv file contains empty string fields (i.e. ,)?
Edit: need to pass keep_default_na=False
to pd.read_csv
- i.e.
load_dataset('csv', data_files=input_file_path, keep_default_na=False)
Is there a workaround for this, i.e. if the csv file contains empty string fields (i.e. ,)?
Edit: need to pass keep_default_na=False
to pd.read_csv
- i.e.
load_dataset('csv', data_files=input_file_path, keep_default_na=False)