Skip to content

Commit

Permalink
add max and min
Browse files Browse the repository at this point in the history
  • Loading branch information
PythonFZ committed Dec 16, 2024
1 parent c0b3efa commit 536a54b
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions ipsuite/analysis/md.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,4 +50,6 @@ def run(self):
"total": int(np.sum(steps)),
"mean": float(np.mean(steps)),
"std": float(np.std(steps)),
"max": int(np.max(steps)),
"min": int(np.min(steps)),
}

0 comments on commit 536a54b

Please sign in to comment.