Skip to content

Commit

Permalink
data frame columns
Browse files Browse the repository at this point in the history
  • Loading branch information
silil committed Nov 14, 2023
1 parent bdcd19d commit a062b3f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/triage/component/architect/builders.py
Original file line number Diff line number Diff line change
Expand Up @@ -557,7 +557,7 @@ def stitch_csvs(self, features_queries, label_query, matrix_store, matrix_uuid):

logger.debug(f"getting labels pandas series from polars data frame")
# getting label series
labels_pl = df_pl.select(pl.columns[-1])
labels_pl = df_pl.select(df_pl.columns[-1])
# convert into pandas series
labels_df = labels_pl.to_pandas()
labels_series = labels_df.squeeze()
Expand Down

0 comments on commit a062b3f

Please sign in to comment.