Skip to content

Commit

Permalink
Merge pull request #59 from ogrisel/fix-warning-load_seer
Browse files Browse the repository at this point in the history
Fix a pandas warning in load_seer
  • Loading branch information
ogrisel authored Jul 3, 2024
2 parents a6da184 + 78f82db commit cf07d74
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion hazardous/data/_seer.py
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ def load_seer(
# posteriori?
# In particular this should help remove a pandas warning for column 22.
original_data = data = pd.read_csv(
input_path, sep="\t", header=None, names=COLUMN_NAMES
input_path, sep="\t", header=None, names=COLUMN_NAMES, low_memory=False
)

if survtrace_preprocessing:
Expand Down

0 comments on commit cf07d74

Please sign in to comment.