(self, data, sync=True)
| 826 | self._data = pd.DataFrame() |
| 827 | |
| 828 | def update(self, data, sync=True): |
| 829 | self._data = data.astype(np.int32).copy() |
| 830 | if sync: |
| 831 | self.sync_to_disk() |
| 832 | |
| 833 | def append_index(self, data, to_disk=True): |
| 834 | data = data.astype(np.int32).copy() |
no test coverage detected