feat: implement logistic regression pipeline with automated JASP-formatted report generation and data inspection utilities
This commit is contained in:
@@ -0,0 +1,11 @@
|
||||
import sys
|
||||
sys.stdout.reconfigure(encoding='utf-8')
|
||||
import pandas as pd
|
||||
|
||||
file_path = r'c:\Users\NASPC\Documents\Du án tại SG tháng 8\KẾT QUẢ PHÂN TÍCH.xlsx'
|
||||
df_donation = pd.read_excel(file_path, sheet_name='Donation')
|
||||
df_decision = pd.read_excel(file_path, sheet_name='Decision')
|
||||
|
||||
print("--- Donation Sheet Layout ---")
|
||||
print(df_donation.head(20).to_string())
|
||||
|
||||
Reference in New Issue
Block a user