carisackc commited on
Commit
ea300d0
·
1 Parent(s): 0c78c42

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -82,7 +82,7 @@ patientid = df['Patient_ID']
82
  patient = st.sidebar.selectbox('Select Patient ID:', patientid) #Filter Patient
83
  admissionid = df['Admission_ID'].loc[df['Patient_ID'] == patient] #Filter available Admission id for patient
84
  HospitalAdmission = st.sidebar.selectbox(' ', admissionid)
85
- pastHistoryEpid = df3['HADM_ID'].loc[df3['Patient_ID'] == patient] #Filter list of available Past History (for History tab)
86
 
87
 
88
  # List of Model available
 
82
  patient = st.sidebar.selectbox('Select Patient ID:', patientid) #Filter Patient
83
  admissionid = df['Admission_ID'].loc[df['Patient_ID'] == patient] #Filter available Admission id for patient
84
  HospitalAdmission = st.sidebar.selectbox(' ', admissionid)
85
+ pastHistoryEpid = df3['Admission_ID'].loc[df3['Patient_ID'] == patient] #Filter list of available Past History (for History tab)
86
 
87
 
88
  # List of Model available