kodokgodog commited on
Commit
64da642
1 Parent(s): e25af3e

Upload eda.py

Browse files
Files changed (1) hide show
  1. eda.py +7 -1
eda.py CHANGED
@@ -47,12 +47,18 @@ def run() :
47
  sns.countplot(x='DEATH_EVENT', data=data)
48
  st.pyplot(fig)
49
 
 
 
 
 
50
  # Membuat Historgram
51
  st.write('#### Histogram of ejection_fraction')
52
  fig = plt.figure(figsize=(15, 5))
53
  sns.histplot(data['ejection_fraction'], bins=30, kde=True)
54
  st.pyplot(fig)
55
-
 
 
56
  # Membuat Histogram Berdasarkan Input User
57
  st.write('#### Histogram berdasarkan input user')
58
  pilihan = st.selectbox('Pilih column : ', ('age', 'ejection_fraction', 'serum_creatinine', 'serum_sodium'))
 
47
  sns.countplot(x='DEATH_EVENT', data=data)
48
  st.pyplot(fig)
49
 
50
+ '''
51
+ Dengan melihat presentase dari Survived dan Dead terlihat bahwa perbandingan dari pasien yang selamat apabila disederhanakan menjadi 2:1.
52
+ '''
53
+
54
  # Membuat Historgram
55
  st.write('#### Histogram of ejection_fraction')
56
  fig = plt.figure(figsize=(15, 5))
57
  sns.histplot(data['ejection_fraction'], bins=30, kde=True)
58
  st.pyplot(fig)
59
+ '''
60
+ Ejection Fraction merupakan salah satu faktor yang sangat mempengaruhi heart failure.
61
+ '''
62
  # Membuat Histogram Berdasarkan Input User
63
  st.write('#### Histogram berdasarkan input user')
64
  pilihan = st.selectbox('Pilih column : ', ('age', 'ejection_fraction', 'serum_creatinine', 'serum_sodium'))