This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#pandas replace all missing values 1,,,9 with zero's 1,0,0,9 | |
df = df.fillna(0) |
NewerOlder