Skip to content
Snippets Groups Projects
Commit c9f469e6 authored by Tamas Gal's avatar Tamas Gal :speech_balloon:
Browse files

Remove minus sign from time residual. Closes #26

parent 63f567f4
No related branches found
No related tags found
No related merge requests found
......@@ -53,7 +53,7 @@ def main():
t_res = _df[_df.floor == floor].t_res
t_res = t_res[np.abs(t_res) < 500]
print(f" DU {du} floor {floor}: {len(t_res)} entries")
ax.hist(-t_res,
ax.hist(t_res,
bins=100,
histtype='step',
lw=2,
......
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