私はテーブルを持っていますx
:
website
0 http://www.google.com/
1 http://www.yahoo.com
2 None
pythonNoneをpandasNaNに置き換えたいです。私は試した:
x.replace(to_replace=None, value=np.nan)
しかし、私は得ました:
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'
どうすればいいですか?
df['column'].replace(nan, "", inplace=True)
Noneを空の文字列にしたい場合は可能です。