ardifarizky commited on
Commit
7204750
1 Parent(s): e94ad7e

Update eda.py

Browse files
Files changed (1) hide show
  1. eda.py +6 -2
eda.py CHANGED
@@ -29,7 +29,11 @@ def run():
29
 
30
  d = pd.read_csv('hotel_bookings.csv')
31
 
32
- with st.container(width=800):
 
 
 
 
33
 
34
  fig, ax = plt.subplots(nrows=2, ncols=2, figsize=(15, 10))
35
 
@@ -109,7 +113,7 @@ def run():
109
 
110
  st.pyplot()
111
 
112
- with st.sidebar:
113
 
114
 
115
  st.text('- Bookings made well in advance, such as 250 days before the stay, often face cancellations. This suggests the need for flexible cancellation policies.')
 
29
 
30
  d = pd.read_csv('hotel_bookings.csv')
31
 
32
+ col1, col2, col3 = st.columns(2)
33
+
34
+
35
+
36
+ with col1:
37
 
38
  fig, ax = plt.subplots(nrows=2, ncols=2, figsize=(15, 10))
39
 
 
113
 
114
  st.pyplot()
115
 
116
+ with col2:
117
 
118
 
119
  st.text('- Bookings made well in advance, such as 250 days before the stay, often face cancellations. This suggests the need for flexible cancellation policies.')