Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -12,11 +12,11 @@ tips = sns.load_dataset("tips")
|
|
| 12 |
tips["tip_pct"] = tips["tip"] / tips["total_bill"] * 100
|
| 13 |
|
| 14 |
# User question
|
| 15 |
-
st.title("💡 Do people tip more on certain days of the week?")
|
| 16 |
-
st.subheader("Explore average tip percentages by day, time.")
|
| 17 |
|
| 18 |
# Short problem statement
|
| 19 |
-
st.write("
|
| 20 |
"Use the filters to explore differences by day and time(Lunch/Dinner) of day.")
|
| 21 |
|
| 22 |
# Sidebar filters
|
|
|
|
| 12 |
tips["tip_pct"] = tips["tip"] / tips["total_bill"] * 100
|
| 13 |
|
| 14 |
# User question
|
| 15 |
+
st.title("💡 Do people tip more on certain days of the week or at certain time of the day?")
|
| 16 |
+
st.subheader("Explore average and highest tip percentages by day, time.")
|
| 17 |
|
| 18 |
# Short problem statement
|
| 19 |
+
st.write("Check whether tipping behavior changes depending on the day of the week or time of the day. "
|
| 20 |
"Use the filters to explore differences by day and time(Lunch/Dinner) of day.")
|
| 21 |
|
| 22 |
# Sidebar filters
|