From 258b60883cd4698fb34d223df1652a86f78d1386 Mon Sep 17 00:00:00 2001 From: JulioV Date: Wed, 2 Dec 2020 18:49:59 -0500 Subject: [PATCH] Add overnight time segment example --- docs/setup/configuration.md | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/docs/setup/configuration.md b/docs/setup/configuration.md index a77aaeda..f3116672 100644 --- a/docs/setup/configuration.md +++ b/docs/setup/configuration.md @@ -327,10 +327,16 @@ Time segments (or epochs) are the time windows on which you want to extract beha daily,00:00:00,23H 59M 59S,every_day,0 ``` === "Morning" - Use the following `Periodic` segment file to create morning segments starting from 06:00 and ending at 12:00 of every day in your study + Use the following `Periodic` segment file to create morning segments starting at 06:00:00 and ending at 11:59:59 of every day in your study ```csv label,start_time,length,repeats_on,repeats_value - morning,00:00:00,5H 59M 59S,every_day,0 + morning,06:00:00,5H 59M 59S,every_day,0 + ``` +=== "Overnight" + Use the following `Periodic` segment file to create overnight segments starting at 20:00:00 and ending at 07:59:59 (next day) of every day in your study + ```csv + label,start_time,length,repeats_on,repeats_value + morning,20:00:00,11H 59M 59S,every_day,0 ``` === "Weekly" Use the following `Periodic` segment file to create **non-overlapping** weekly segments starting at midnight of every **Monday** in your study