Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
D
DAN
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Package registry
Container Registry
Operate
Terraform modules
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Automatic Text Recognition
DAN
Merge requests
!288
Round mean values calculated during data analysis
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Round mean values calculated during data analysis
analyze-round-mean-value
into
main
Overview
4
Commits
5
Pipelines
0
Changes
1
All threads resolved!
Hide all comments
Merged
Manon Blanco
requested to merge
analyze-round-mean-value
into
main
1 year ago
Overview
4
Commits
5
Pipelines
0
Changes
1
All threads resolved!
Hide all comments
Expand
Closes
#201 (closed)
0
0
Merge request reports
Compare
version 3
version 5
db05e9a2
1 year ago
version 4
6c41edd5
1 year ago
version 3
4e8f0d21
1 year ago
version 2
fe81c6b5
1 year ago
version 1
2cf39e7b
1 year ago
main (base)
and
version 4
latest version
2c4eb1f2
5 commits,
1 year ago
version 5
db05e9a2
5 commits,
1 year ago
version 4
6c41edd5
4 commits,
1 year ago
version 3
4e8f0d21
3 commits,
1 year ago
version 2
fe81c6b5
2 commits,
1 year ago
version 1
2cf39e7b
1 commit,
1 year ago
Show latest version
1 file
+
1
−
1
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
dan/datasets/analyze/statistics.py
+
1
−
1
Options
@@ -53,7 +53,7 @@ def create_table(
*
list
(
map
(
# Round values if needed
partial
(
round
,
ndigits
=
digits
)
if
digits
else
lambda
x
:
x
,
partial
(
round
,
ndigits
=
digits
),
map
(
operator
,
data
.
values
()),
)
),
Loading