eland icon indicating copy to clipboard operation
eland copied to clipboard

Implement [DataFrame Series].fillna() and [DataFrame, Series].dropna()

Open sethmlarson opened this issue 5 years ago • 1 comments

fillna() can be implemented as a post-processing task. dropna() can be implemented as a query filter

For now we can support axis only as axis=1 for "columns", some options may be supportable but others may be tougher.

sethmlarson avatar May 18 '20 20:05 sethmlarson

I'll try to implement this

  • Similar to Pandas

  • For dropna -> axis=columns and how=all

  • Fillna as postprocessing task can be done.

So, I need to think of how to do Axis=rows and how = any

Any inputs ? 🙂

V1NAY8 avatar Oct 14 '20 18:10 V1NAY8