Skip to content
Snippets Groups Projects
Commit ea3eea80 authored by Matthew K Defenderfer's avatar Matthew K Defenderfer
Browse files

Add example notebook for full analysis

parent 7452dc22
No related branches found
No related tags found
1 merge request!35Add example notebook for full analysis
......@@ -182,6 +182,7 @@ dependencies:
- pillow=11.0.0=py311h49e9ac3_0
- pip=24.3.1=pyh8b19718_2
- platformdirs=4.3.6=pyhd8ed1ab_1
- plotly=5.24.1=pyhd8ed1ab_1
- prompt-toolkit=3.0.48=pyha770c72_1
- psutil=6.1.0=py311h9ecbd09_0
- pthread-stubs=0.4=hb9d3cd8_1002
......@@ -215,6 +216,7 @@ dependencies:
- spdlog=1.14.1=hed91bc2_1
- stack_data=0.6.3=pyhd8ed1ab_1
- tblib=3.0.0=pyhd8ed1ab_1
- tenacity=9.0.0=pyhd8ed1ab_1
- tk=8.6.13=noxft_h4845f30_101
- toolz=1.0.0=pyhd8ed1ab_1
- tornado=6.4.2=py311h9ecbd09_0
......
This diff is collapsed.
......@@ -18,7 +18,7 @@ def choose_appropriate_storage_unit(size,starting_unit='B'):
except (ValueError):
raise(f"{starting_unit} is not a valid storage unit. Choose from 'B','kB','MB','GB', or 'TB'")
while ((size/1024) >= 1) & (exp <= 4):
while ((size/1024) >= 1) & (exp < 4):
size = size/1024
exp += 1
return exp,units[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