Skip to content
Snippets Groups Projects
Commit 902e5b4c authored by STEVAN Antoine's avatar STEVAN Antoine 🦀
Browse files

add snippet to plot all "inbreeding" experiments (dragoon/komodo!139)

parent 0d615007
No related branches found
No related tags found
1 merge request!139add snippet to plot all "inbreeding" experiments
Pipeline #5367 passed
......@@ -39,3 +39,17 @@ inbreeding run --options $OPTS --prng-seed $PRNG_SEED
let experiment = $"($PRNG_SEED)-($OPTS.environment)-($OPTS.k)-($OPTS.n)-($OPTS.nb_bytes)"
inbreeding load $experiment | inbreeding plot
```
## plot all experiments
```bash
use bins/inbreeding/consts.nu CACHE
use bins/inbreeding
const FIGURES_DIR = ($CACHE | path join figures)
mkdir $FIGURES_DIR
for exp in (inbreeding list) {
inbreeding load $exp | inbreeding plot --save ($FIGURES_DIR | path join $exp)
}
```
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