kieferk / dfply

dplyr-style piping operations for pandas dataframes
GNU General Public License v3.0
889 stars 103 forks source link

feature request: add window operation of fillna #76

Closed ucohen closed 5 years ago

ucohen commented 5 years ago

should work as: df >>= mutate(nonans=fillna(X.col_with_nans, value_to_replace))

ucohen commented 5 years ago

can be easily done via: @make_symbolic def fillna(series, val): return series.fillna(val)

Thanks!