Add todo to rename a column.

notes
junos 2023-03-27 11:46:04 +02:00
parent 936324d234
commit c35c75682f
1 changed files with 2 additions and 1 deletions

View File

@ -46,7 +46,8 @@ def extract_ers_from_file(esm_df, device_id): # TODO: session_id groupby -> spre
# Extract time-relevant information
extracted_ers = esm_df.groupby(["device_id", "esm_session"])['timestamp'].apply(lambda x: math.ceil((x.max() - x.min()) / 1000)).reset_index() # in rounded up seconds
extracted_ers = extracted_ers[extracted_ers["timestamp"] <= 15 * 60].reset_index(drop=True) # ensure that the longest duration of the questionnaire anwsering is 15 min
extracted_ers = extracted_ers[extracted_ers["timestamp"] <= 15 * 60].reset_index(drop=True) # ensure that the longest duration of the questionnaire anwsering is 15 min
# TODO: Rename "timestamp" column meaningfully.
time_before_questionnaire = 30 * 60 # in seconds (30 minutes)