Skip to content

Commit

Permalink
fix: field name is missing ')'
Browse files Browse the repository at this point in the history
  • Loading branch information
chanshing committed May 8, 2024
1 parent 5337cf2 commit ede3c28
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/stepcount/stepcount.py
Original file line number Diff line number Diff line change
Expand Up @@ -269,7 +269,7 @@ def _mean(x, min_wear=None, dt=None):
# crude (unadjusted) estimates ignore NAs
minutely = v.resample('T').agg(_mean).rename('ENMO(mg)')
hourly = v.resample('H').agg(_mean).rename('ENMO(mg)')
daily = v.resample('D').agg(_mean).rename('ENMO(mg')
daily = v.resample('D').agg(_mean).rename('ENMO(mg)')
avg = daily.agg(_mean)

return {
Expand Down

0 comments on commit ede3c28

Please sign in to comment.