Skip to content
Snippets Groups Projects
Commit 956e45a3 authored by Manon Blanco's avatar Manon Blanco Committed by Yoann Schneider
Browse files

Round mean values calculated during data analysis

parent aaeec5ed
No related branches found
No related tags found
1 merge request!288Round mean values calculated during data analysis
This commit is part of merge request !288. Comments created here will be created in the context of that merge request.
# -*- coding: utf-8 -*-
import logging
from collections import Counter, defaultdict
from functools import partial
from pathlib import Path
from typing import Dict, List, Optional
......@@ -38,7 +39,7 @@ def create_table(
[
("Min", np.min),
("Max", np.max),
("Mean", np.mean),
("Mean", partial(np.mean, dtype=np.float16)),
("Median", np.median),
]
)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment