Support Questions

Find answers, ask questions, and share your expertise

how to replace a column having null values with proper values in dataframes

Explorer
 
1 REPLY 1

Super Collaborator

maybe you can provide more details on your actual question?

To identify the null (actually missing) value in dataframe: isNull()

To replace missing values with zero: fillna(0), you can of course set any other value as well