Example #1
0
 def data_chunk_keep(self):
     chunk =  self._data[self.keep_start:self.keep_end,:]
     return convert_dtype(chunk, self.dtype)
Example #2
0
 def data_chunk_full(self):
     chunk = self._data[self.s_start:self.s_end,:]
     return convert_dtype(chunk, self.dtype)
Example #3
0
 def data(self):
     excerpt = self._data[self.start:self.end,:]
     return convert_dtype(excerpt, self.dtype)
 def data_chunk_keep(self):
     chunk = self._data[self.keep_start:self.keep_end, :]
     return convert_dtype(chunk, self.dtype)
 def data_chunk_full(self):
     chunk = self._data[self.s_start:self.s_end, :]
     return convert_dtype(chunk, self.dtype)
 def data(self):
     excerpt = self._data[self.start:self.end, :]
     return convert_dtype(excerpt, self.dtype)