Skip to content

Commit b3fee0a

Browse files
committed
Update SEQ_SPARSE config docstring
1 parent a46c7c0 commit b3fee0a

File tree

1 file changed

+16
-16
lines changed

1 file changed

+16
-16
lines changed

src/main/config/config.py

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -133,28 +133,28 @@
133133
----------
134134
SEQ_SPARSE : int
135135
Values:
136-
0: Continuous sequence - no gaps for missed days
137-
1: Sparse sequence - adds blank entries in index for missed days
136+
0: Continuous rows but non-continuous sequence - skips missing days
137+
1: All days in sequence shown - blank entries for missed days
138138
Default: 0
139139
140140
Example:
141141
For three-digit format (SEQ_NOTATION=0):
142-
If SEQ_SPARSE=0: Missing a day creates sequence
143-
001
144-
002
145-
If SEQ_SPARSE=1: Missing a day creates sequence
146-
001
147-
002 [all other columns blank]
148-
003
142+
If SEQ_SPARSE=0: Missing a day shows as gap in sequence
143+
Row 1: 001
144+
Row 2: 003 (sequence skips 002)
145+
If SEQ_SPARSE=1: Missing day included with blank data
146+
Row 1: 001
147+
Row 2: 002 [not skipped but other columns blank]
148+
Row 3: 003
149149
150150
For date format (SEQ_NOTATION=1):
151-
If SEQ_SPARSE=0: Missing a day creates sequence
152-
2025‑01‑01
153-
2025‑01‑03
154-
If SEQ_SPARSE=1: Missing a day creates sequence
155-
2025‑01‑01
156-
2025‑01‑02 [all other columns blank]
157-
2025‑01‑03
151+
If SEQ_SPARSE=0: Missing a day shows as gap in sequence
152+
Row 1: 2025‑01‑01
153+
Row 2: 2025‑01‑03 (skips 2025‑01‑02)
154+
If SEQ_SPARSE=1: Missing day included with blank data
155+
Row 1: 2025‑01‑01
156+
Row 2: 2025‑01‑02 [not skipped but other columns blank]
157+
Row 3: 2025‑01‑03
158158
159159
Notes:
160160
Setting SEQ_SPARSE=1 helps with accountability by making missed days

0 commit comments

Comments
 (0)