Skip to content

Commit 6fb334d

Browse files
committed
fix intenesty
1 parent 71977ed commit 6fb334d

7 files changed

Lines changed: 1 addition & 1 deletion

File tree

.DS_Store

0 Bytes
Binary file not shown.

Analysis/.DS_Store

0 Bytes
Binary file not shown.

Analysis/scripts/.DS_Store

0 Bytes
Binary file not shown.

Lab_Dash/.DS_Store

0 Bytes
Binary file not shown.

Lab_Dash/dash_apps/.DS_Store

0 Bytes
Binary file not shown.

Lab_Dash/dash_apps/MFP_Dashboard.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -501,7 +501,7 @@ def update_view(frame, channel, pid, markers, show_cellpose, y_metric, entry_id)
501501

502502
y_values.append(best)
503503
else:
504-
y_values = t_data[y_metric].fillna(0)
504+
y_values = t_data[y_metric].fillna(0).tolist() if y_metric in t_data.columns else [0] * len(t_data)
505505

506506
# connectgaps=True sorgt für durchgehende Linien, auch wenn die KI kurz geblinzelt hat
507507
fig_graph.add_trace(go.Scatter(x=time_vals, y=y_values, mode='lines+markers',

jupyter_config/.DS_Store

0 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)