I want to replace a NaN in a dataframe column by a dictionary like this: {"value":["100"]}
df[column].apply(type).value_counts()
output:
<class 'dict'> 11565
<class 'float'> 43
df[column].isna().sum()
output => 43
How can I do this?