Skip to content

Commit

Permalink
removing chuncking csv
Browse files Browse the repository at this point in the history
  • Loading branch information
hamshkhawar committed Dec 11, 2024
1 parent 1218f8b commit 921ef5c
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -58,9 +58,8 @@ def thresholding_func( # noqa: PLR0915, PLR0912, PLR0913, C901
file: Filename.
"""
chunk_size = 100_000
if file.suffix == ".csv":
df = vaex.from_csv(file, convert=True, chunk_size=chunk_size)
df = vaex.from_csv(file)
else:
df = vaex.open(file, progress=True)

Expand Down

0 comments on commit 921ef5c

Please sign in to comment.