5
Substitua Nenhum por NaN no dataframe do pandas
Eu tenho mesa x: website 0 http://www.google.com/ 1 http://www.yahoo.com 2 None Quero substituir python None por pandas NaN. Eu tentei: x.replace(to_replace=None, value=np.nan) Mas eu tenho: 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' …