コード例 #1
0
ファイル: chunks.py プロジェクト: Peichao/kwiklib
 def data_chunk_keep(self):
     chunk =  self._data[self.keep_start:self.keep_end,:]
     return convert_dtype(chunk, self.dtype)
コード例 #2
0
ファイル: chunks.py プロジェクト: Peichao/kwiklib
 def data_chunk_full(self):
     chunk = self._data[self.s_start:self.s_end,:]
     return convert_dtype(chunk, self.dtype)
コード例 #3
0
ファイル: chunks.py プロジェクト: Peichao/kwiklib
 def data(self):
     excerpt = self._data[self.start:self.end,:]
     return convert_dtype(excerpt, self.dtype)
コード例 #4
0
 def data_chunk_keep(self):
     chunk = self._data[self.keep_start:self.keep_end, :]
     return convert_dtype(chunk, self.dtype)
コード例 #5
0
 def data_chunk_full(self):
     chunk = self._data[self.s_start:self.s_end, :]
     return convert_dtype(chunk, self.dtype)
コード例 #6
0
 def data(self):
     excerpt = self._data[self.start:self.end, :]
     return convert_dtype(excerpt, self.dtype)