Skip to content

Commit 99350fa

Browse files
committed
fix implementation of dqt reader
1 parent 1fafb27 commit 99350fa

2 files changed

Lines changed: 48 additions & 11 deletions

File tree

circStudio/io/dqt/dqt.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,10 +57,10 @@ def __init__(
5757
delimiter=',',
5858
skiprows=(header_size-1),
5959
header=None,
60-
names=['activity', 'light'],
60+
names=['datetime','activity', 'light'],
6161
index_col=0,
6262
parse_dates=[0],
63-
infer_datetime_format=True,
63+
date_format="%Y-%m-%d %H:%M:%S",
6464
dtype=float,
6565
na_values='x'
6666
).asfreq(freq)

0 commit comments

Comments
 (0)