Created
October 11, 2018 14:09
-
-
Save benkrikler/35197cbf289c791912361ab24b8f6e19 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import numpy as np | |
class MaskedUprootTree(): | |
def __init__(self, tree, mask=None): | |
if isinstance(tree, MaskedUprootTree): | |
self.tree = tree.tree | |
self._mask = tree._mask | |
else: | |
self.tree = tree | |
self._mask = np.arange(len(tree)) | |
if mask is None: | |
return | |
if isinstance(mask, (tuple, list)): | |
mask = np.array(mask) | |
elif not isinstance(mask, np.ndarray): | |
raise RuntimeError("mask is not a numpy array, a list, or a tuple") | |
if np.issubdtype(mask.dtype, np.integer): | |
self._mask = mask | |
elif mask.dtype.kind == "b": | |
if len(mask) != len(tree): | |
raise RuntimeError("boolean mask has a different length to the input tree") | |
self._mask = np.where(mask)[0] | |
class pandas_wrap(): | |
def __init__(self, owner): | |
self._owner = owner | |
def df(self, *args, **kwargs): | |
return self._owner.tree.pandas.df(*args, **kwargs).iloc[self._owner._mask] | |
@property | |
def pandas(self): | |
return MaskedUprootTree.pandas_wrap(self) | |
@property | |
def mask(self): | |
return self._mask | |
def apply_mask(self, new_mask): | |
self._mask = self._mask[new_mask] | |
def __len__(self): | |
return len(self._mask) | |
def __getattr__(self, attr): | |
return getattr(self.tree, attr) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment