Sasidhar commited on
Commit
496ba11
·
1 Parent(s): 817e9d2

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -204,7 +204,7 @@ def create_for_bivariate_analysis(selected_files, df, i):
204
  bivariate_columns = st.multiselect("Select the columns to analyse ", df.columns.values,
205
  key= "bivariate_analysis_columns_" + str(i))
206
  for col in bivariate_columns:
207
- st.write(pd.crosstab(df[col], df[target_column], margins=True))
208
  # 3 any other aggregation function can be used based on column type
209
 
210
 
 
204
  bivariate_columns = st.multiselect("Select the columns to analyse ", df.columns.values,
205
  key= "bivariate_analysis_columns_" + str(i))
206
  for col in bivariate_columns:
207
+ st.write(pd.crosstab(df[target_column], df[col], margins=True))
208
  # 3 any other aggregation function can be used based on column type
209
 
210