I'm looking for an easy and efficient way to replace all of a certain value in a H2O Python data frame. In this case this value is NULL. My dataset contains a very substantial amount of NULLs.
My current way of doing it is extraordinarily slow when I have hundreds of columns in a very large dataset. I assume there can be substantial improvements by doing this in a better way...
I just can't figure out the syntax. Thanks, this will save me an enormous amount of time!
My current approach:
for each_col in table_names_list:
h2o_df[h2o_df[each_col].isna(), each_col]=0