Skip to content
Snippets Groups Projects
Commit 3baebe90 authored by Bert Palm's avatar Bert Palm 🎇
Browse files

Merge branch 'feature_isin' into 'develop'

Feature: isin

See merge request !4
parents e06aa5a0 5daab48f
No related branches found
No related tags found
1 merge request!4Feature: isin
......@@ -641,6 +641,10 @@ class DictOfSeries:
else:
return DictOfSeries(data=data, itype=self.itype, cast_policy=self._policy, fastpath=True)
def isin(self, values):
data = self._fast_apply('isin', values=values)
return DictOfSeries(data=data, itype=self.itype, cast_policy=self._policy, fastpath=True)
def memory_usage(self, index=True, deep=False):
mem = 0
for k in self.columns:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment