Mam stolik x
:
website
0 http://www.google.com/
1 http://www.yahoo.com
2 None
Chcę zamienić Pythona None na pandy NaN. Próbowałem:
x.replace(to_replace=None, value=np.nan)
Ale dostałem:
TypeError: 'regex' must be a string or a compiled regular expression or a list or dict of strings or regular expressions, you passed a 'bool'
Jak mam się do tego zabrać?
df['column'].replace(nan, "", inplace=True)
jeśli chcesz, aby None był pusty.