예제 #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)
 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)