Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add detailed statistics for the subcommand show #73

Merged
merged 6 commits into from
Oct 26, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update src/core/Test_stat.ml
Co-authored-by: Simon Cruanes <simon.cruanes.2007@m4x.org>
  • Loading branch information
Halbaroth and c-cube authored Oct 9, 2023
commit 45ed699f117041e9b6d87b867a97c0b23c7f0550
4 changes: 2 additions & 2 deletions src/core/Test_stat.ml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ open Common
open Test
module PB = PrintBox

(* Aggregate function computing the mean and the standard deviation
of data series using the Welford's algoritm. *)
(** Aggregate function computing the mean and the standard deviation
of data series using the Welford's algorithm. *)
module Stats = struct
type acc = { n: int; total: float; mean: float * float; s: float * float }
c-cube marked this conversation as resolved.
Show resolved Hide resolved

Expand Down
Loading