Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Komodo
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Dragoon
Komodo
Commits
a194a5b9
Commit
a194a5b9
authored
11 months ago
by
STEVAN Antoine
Committed by
STEVAN Antoine
11 months ago
Browse files
Options
Downloads
Patches
Plain Diff
use all x values to compute the min and max
parent
4212bb72
No related branches found
No related tags found
1 merge request
!120
use all x values to compute x limits in `inbreeding plot`
Pipeline
#5288
passed
11 months ago
Stage: fmt
Stage: test
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
bins/inbreeding/plot.nu
+2
-2
2 additions, 2 deletions
bins/inbreeding/plot.nu
with
2 additions
and
2 deletions
bins/inbreeding/plot.nu
+
2
−
2
View file @
a194a5b9
...
...
@@ -98,8 +98,8 @@ export def main [
| reject strategy
| save --force /tmp/graphs.json
let x_min = open /tmp/graphs.json | get points
.0.
x | math min
let x_max = open /tmp/graphs.json | get points
.0.
x | math max
let x_min = open /tmp/graphs.json | get points
| flatten | get
x | math min
let x_max = open /tmp/graphs.json | get points
| flatten | get
x | math max
let args = [
--json-data-file /tmp/graphs.json
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment