Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -17,7 +17,7 @@ st.write('---')
|
|
| 17 |
with st.sidebar:
|
| 18 |
st.subheader('Filter Options')
|
| 19 |
threshold = st.slider('Threshold for Total Bill', min_value=0, max_value=100, value=10, step=1)
|
| 20 |
-
day_selector = st.multiselect('Select Day(s)', options=data['day'].unique(), default=data['day'].unique())
|
| 21 |
|
| 22 |
# Filter data
|
| 23 |
filtered_data = data[data['total_bill'] > threshold]
|
|
|
|
| 17 |
with st.sidebar:
|
| 18 |
st.subheader('Filter Options')
|
| 19 |
threshold = st.slider('Threshold for Total Bill', min_value=0, max_value=100, value=10, step=1)
|
| 20 |
+
day_selector = st.multiselect('Select Day(s)', options=data['day'].unique(), default=data['day'].unique().all())
|
| 21 |
|
| 22 |
# Filter data
|
| 23 |
filtered_data = data[data['total_bill'] > threshold]
|