Skip to content

Commit

Permalink
fix bug
Browse files Browse the repository at this point in the history
  • Loading branch information
nienketimmermans committed Dec 11, 2024
1 parent 0ae0b2d commit f341be2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/paradigma/imu_preprocessing.py
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ def preprocess_imu_data(df: pd.DataFrame, config: IMUConfig, sensor: str) -> pd.

values_colnames += config.gravity_cols

df = df[[config.time_colname, *values_colnames]]
df = df[[DataColumns.TIME, *values_colnames]]

return df

Expand Down

0 comments on commit f341be2

Please sign in to comment.