smoothing

This commit is contained in:
Bartosz Karwacki 2022-04-10 18:24:05 +02:00
parent 4f08607d34
commit d71b99be29
3 changed files with 6449 additions and 6450 deletions

File diff suppressed because it is too large Load Diff

5
run.py
View File

@ -14,14 +14,13 @@ class Collection:
def __init__(self, path: str) -> None: def __init__(self, path: str) -> None:
self._path = path self._path = path
def read(self, nrows=200_000): def read(self):
self.data = pd.read_csv( self.data = pd.read_csv(
self._path, self._path,
sep="\t", sep="\t",
error_bad_lines=False, error_bad_lines=False,
header=None, header=None,
quoting=csv.QUOTE_NONE, quoting=csv.QUOTE_NONE
nrows=nrows,
) )

File diff suppressed because it is too large Load Diff