Closed geyang closed 5 years ago
Hi @episodeyang,
Good idea. I will try it and I will publish a proposal here.
Hi @episodeyang,
It's done, we have two new methods .dropMissingValues
and .fillMissingValues
.
It's on develop and will be released in the 1.4.0 soon.
Thanks, this is really awesome!
Released in 1.4.0
Would be great if there is a performant way to do this.
The documentation on the API is comprehensive. There exists
drop
anddropDuplicates
, sodropna
would probably be a good addition.Right now I'm achieving this functionality with filter:
Given that this is a pure javascript library, the performance of this is probably the best you can get. On the other hand, it might get more verbose if multiple columns are concerned, where it would make sense to have a
dropna
function on theDataFrame
.