My Excel sheet looks like this:
A B
1 first second
2 1 -
3 2 -
4 - 5
5 4 6
I try to parse - as NaN when reading it but this doesn't work:
df = pd.read_excel(excel_file_path, header = 0, na_values = '-')
It instead turns - to 0. How can I fix it?
