I am using this code to change the None
values in the SFrame:
sarr['value'] = sarr['value'].apply(lambda x: '-1' if x is None else x)
After running this code, I still see the same None
values, no effect. Any ideas what is going on here?
I am using this code to change the None
values in the SFrame:
sarr['value'] = sarr['value'].apply(lambda x: '-1' if x is None else x)
After running this code, I still see the same None
values, no effect. Any ideas what is going on here?
Copyright © 2021 Jogjafile Inc.
The following method of
SFrame
worked: