I was wandering about this and finally found an answer I would like to share here: https://groups.google.com/forum/#!topic/h2ostream/M9rIi0k6K08
If you have an H2OFrame like this:
a b c d e
1 0 NA NA NA NA
2 0 2 2 2 2
3 0 NA NA NA NA
4 0 NA NA 1 2
5 0 NA NA NA NA
6 0 1 2 3 2
And would like to replace all NAs in column b with 0s to gain this:
a b c d e
1 0 0 NA NA NA
2 0 2 2 2 2
3 0 0 NA NA NA
4 0 0 NA 1 2
5 0 0 NA NA NA
6 0 1 2 3 2