Destri2000 commited on
Commit
e3dd818
1 Parent(s): 11644e7
Files changed (1) hide show
  1. eda.py +1 -0
eda.py CHANGED
@@ -29,6 +29,7 @@ def run():
29
  option = st.selectbox('Select Column: ', ('sex', 'education_level', 'marital_status', 'age'))
30
  fig = plt.figure(figsize=(15,5))
31
  sns.histplot(df[option], bins = 30, kde = True)
 
32
  st.pyplot(fig)
33
 
34
 
 
29
  option = st.selectbox('Select Column: ', ('sex', 'education_level', 'marital_status', 'age'))
30
  fig = plt.figure(figsize=(15,5))
31
  sns.histplot(df[option], bins = 30, kde = True)
32
+ plt.ylabel('Total Customers')
33
  st.pyplot(fig)
34
 
35