carisackc commited on
Commit
b4adba1
1 Parent(s): fbe0fb3

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +8 -4
app.py CHANGED
@@ -48,10 +48,14 @@ patientid = col3.write(f"Patient ID: {patient} ")
48
  admissionid =col4.write(f"Admission ID: {HospitalAdmission} ")
49
 
50
  col1, col2, col3, col4 = st.columns(4)
51
- col1.st.button('Admission')
52
- col2.st.button('Daily Narrative')
53
- col3.st.button('Discharge Plan')
54
- col4.st.button('Social Notes')
 
 
 
 
55
  #_min_length = col1.number_input("Minimum Length", value=_min_length)
56
  #_max_length = col2.number_input("Maximun Length", value=_max_length)
57
  ##_early_stopping = col3.number_input("early_stopping", value=_early_stopping)
 
48
  admissionid =col4.write(f"Admission ID: {HospitalAdmission} ")
49
 
50
  col1, col2, col3, col4 = st.columns(4)
51
+ with col1
52
+ st.button('Admission')
53
+ with col2
54
+ st.button('Daily Narrative')
55
+ with col3
56
+ st.button('Discharge Plan')
57
+ with col4
58
+ st.button('Social Notes')
59
  #_min_length = col1.number_input("Minimum Length", value=_min_length)
60
  #_max_length = col2.number_input("Maximun Length", value=_max_length)
61
  ##_early_stopping = col3.number_input("early_stopping", value=_early_stopping)