how to understand the chi square contingency table
问题 I have few categorical features: ['Gender', 'Married', 'Dependents', 'Education', 'Self_Employed', 'Property_Area'] from scipy.stats import chi2_contingency chi2, p, dof, expected = chi2_contingency((pd.crosstab(df.Gender, df.Married).values)) print (f'Chi-square Statistic : {chi2} ,p-value: {p}') output: Chi-square Statistic : 79.63562874824729 ,p-value: 4.502328957824834e-19 How can I know if the features are independent from each other from these statistics? I am trying to build a