修正睡眠时长小数点

This commit is contained in:
andrew 2023-09-17 10:04:35 +08:00
parent d5ba9b2cf4
commit a10289cf9a

View File

@ -58,7 +58,7 @@ def AnalyseSegment(df_segment, thresh=0.5, thresh_event_interval=2, thresh_event
SA_HYP_count = len(result)
print("patient: ", save_path.stem)
print("Event number: ", SA_HYP_count)
print("Record length (hours): ", round(record_length))
print("Record length (hours): ", round(record_length, 2))
print("AHI: ", AHI)
print("Severity: ", severity)
print("=====================================")