I am working extensive data processing in nodejs. I found danfojs as a nice alternative to python Pandas. But facing some functionality lacking in comparison to Pandas.
How to work out pandas isin() functionality in Danfojs ?
Example:
I have the below DataFrame:
| id | name | address |
|---|---|---|
| asefwc | Abdullah | Cumilla |
| wefcss | Khairul | Jashore |
| erfegf | Jaman | Magura |
| ytttte | Najrul | Nowga |
| edqfgh | Latif | Chattagram |
| yutydg | Majhar | Rajshahi |
And the below Series:
| id |
|---|
| wefcss |
| ytttte |
| yutydg |
I want to get those rows of the Dataframe which id exists in the series
I don't think there is an equivalent of pandas 'isin' but I've found a work around to solve this problem