improved results

This commit is contained in:
2025-05-27 09:59:33 +02:00
parent fcf9cfa431
commit 742fa901c7
4 changed files with 26 additions and 16 deletions

View File

@@ -14,8 +14,10 @@ def significance_str(p):
return '$p<0.05$'
elif p > 0.001:
return '$p<0.01$'
else:
elif p > 0.0001:
return '$p<0.001$'
else:
return '$p\\ll 0.001$'
def noise_files(data_path, cell_name, alpha=None):