MTeguri commited on
Commit
799f380
·
1 Parent(s): c6ad41b

Update app.py to refine completion message for analysis, specifying that only logistic regression was executed on Supabase data.

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -206,7 +206,7 @@ def analyze_from_supabase(threshold, top_k):
206
  status_md += f"\n❗ ロジスティック回帰の学習に失敗しました: {e}"
207
  coef_df = pd.DataFrame(columns=["feature", "coef", "sign", "rank"]).set_index("feature")
208
 
209
- status_md += "\n\n✅ 解析完了:Supabase データに対して 相関・t検定・箱ひげ図・ロジスティック回帰 を実行しました。"
210
 
211
  return status_md, head_df, label_counts, corr_df, ttest_df, gallery_imgs, coef_df
212
 
 
206
  status_md += f"\n❗ ロジスティック回帰の学習に失敗しました: {e}"
207
  coef_df = pd.DataFrame(columns=["feature", "coef", "sign", "rank"]).set_index("feature")
208
 
209
+ status_md += "\n\n✅ 解析完了:Supabase データに対して ロジスティック回帰 を実行しました。"
210
 
211
  return status_md, head_df, label_counts, corr_df, ttest_df, gallery_imgs, coef_df
212