Exemple #1
0
 def plot_destination(self,
                      ax=None,
                      clean_keys=[],
                      **kwargs):  # pragma: no cover
     matches, mask = self.clean(clean_keys=clean_keys)
     indices = pd.Index(matches['destination_idx'].values)
     return plot_node(self.destination, index_mask=indices, **kwargs)
Exemple #2
0
 def plot_source(self,
                 ax=None,
                 clean_keys=[],
                 **kwargs):  # pragma: no cover
     matches, mask = self.clean(clean_keys=clean_keys)
     indices = pd.Index(matches['source_idx'].values)
     return plot_node(self.source, index_mask=indices, **kwargs)
Exemple #3
0
 def plot_destination(self, ax=None, clean_keys=[], **kwargs):  # pragma: no cover
     matches, mask = self.clean(clean_keys=clean_keys)
     indices = pd.Index(matches['destination_idx'].values)
     return plot_node(self.destination, index_mask=indices, **kwargs)
Exemple #4
0
 def plot_source(self, ax=None, clean_keys=[], **kwargs):  # pragma: no cover
     matches, mask = self.clean(clean_keys=clean_keys)
     indices = pd.Index(matches['source_idx'].values)
     return plot_node(self.source, index_mask=indices, **kwargs)
Exemple #5
0
 def plot(self, clean_keys=[], **kwargs):  # pragma: no cover
     return plot_node(self, clean_keys=clean_keys, **kwargs)
Exemple #6
0
 def plot(self, clean_keys=[], **kwargs):  # pragma: no cover
     return plot_node(self, clean_keys=clean_keys, **kwargs)
Exemple #7
0
 def plot(self, clean_keys=[], **kwargs):
     return plot_node(self, clean_keys=clean_keys, **kwargs)
Exemple #8
0
 def plot(self, clean_keys=[], **kwargs):
     return plot_node(self, clean_keys=clean_keys, **kwargs)