Answers for "pandas convert nan to empty string"

2

python convert nan to empty string

# Option 1
df1 = df.replace(np.nan, '', regex=True) # All data frame

# Option 2
df[['column1','column2']] = df[['column1','column2']].fillna('') # Specific columns
Posted by: Guest on July-01-2020
3

pandas replace empty string with nan

df = df.replace(r'^\s*$', np.NaN, regex=True)
Posted by: Guest on June-09-2020
0

pandas dataframe convert nan to string

df.fillna('', inplace=True)
Posted by: Guest on March-07-2021
0

pandas using eval converter excluding nans

from ast import literal_eval
from io import StringIO

# replicate csv file
x = StringIO("""A,B
,"('t1', 't2')"
"('t3', 't4')",""")

def literal_converter(val):
    # replace first val with '' or some other null identifier if required
    return val if val == '' else literal_eval(val)

df = pd.read_csv(x, delimiter=',', converters=dict.fromkeys('AB', literal_converter))

print(df)

          A         B
0            (t1, t2)
1  (t3, t4)
Posted by: Guest on September-13-2021

Code answers related to "pandas convert nan to empty string"

Python Answers by Framework

Browse Popular Code Answers by Language