나는 테이블이있다 x
:
website
0 http://www.google.com/
1 http://www.yahoo.com
2 None
python None을 pandas NaN으로 바꾸고 싶습니다. 나는 시도했다 :
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을 빈 문자열로 원한다고 말할 수 있습니다.