मेरे पास तालिका है x
:
website
0 http://www.google.com/
1 http://www.yahoo.com
2 None
मैं अजगर 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)
कह सकते हैं कि आप चाहते थे कि कोई भी खाली स्ट्रिंग न हो।