From 35c8862aa8e261065c01eadba636abc09ce8cbfc Mon Sep 17 00:00:00 2001 From: 0xFugue <119708655+0xFugue@users.noreply.github.com> Date: Tue, 7 Nov 2023 19:36:57 +0530 Subject: [PATCH] pushing recent changes --- scripts/analysis.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/analysis.py b/scripts/analysis.py index 95a548b..a6d1dfc 100644 --- a/scripts/analysis.py +++ b/scripts/analysis.py @@ -177,7 +177,7 @@ def plot_tree_vs_branch(tree, branch, oprefix): axes.set_xlabel("Tree") axes.set_ylabel("Branch") - branch[1] = [6] + branch[1] + #branch[1] = [6] + branch[1] print("\nT, B:", f'({tree[1], len(tree[1])})', f'({branch[1], len(branch[1])})') axes.scatter(tree[1], branch[1]) @@ -232,7 +232,7 @@ def views(ctx: typer.Context, log.basicConfig(level=log.INFO) nwsize2vfins = compute_view_times(path, oprefix, otype) - #write_dict(nwsize2vfins, f'{oprefix}-viewtimes.dict') + write_dict(nwsize2vfins, f'{oprefix}-viewtimes.dict') print("processed and wrote the dict. now reading...") nwsize2vfins = read_dict(f'{oprefix}-viewtimes.dict')