Skip to content

Commit 3e98ef6

Browse files
committed
Remove unnecessary columns from DataFrame in compute_acquisition_order function
1 parent 3a23408 commit 3e98ef6

1 file changed

Lines changed: 8 additions & 0 deletions

File tree

src/imperandi/ingest/clean.py

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1024,6 +1024,14 @@ def compute_acquisition_order(df):
10241024
right_index=False,
10251025
how="left",
10261026
)
1027+
df = df.drop(
1028+
columns=[
1029+
#"_acq_timestamp",
1030+
"_series_number_sort",
1031+
"_acquisition_number_sort",
1032+
],
1033+
errors="ignore",
1034+
)
10271035
return df
10281036

10291037

0 commit comments

Comments
 (0)