Update app.py
Browse files
app.py
CHANGED
@@ -69,7 +69,7 @@ if uploaded_file:
|
|
69 |
household_id = st.text_input("Enter Household ID for specific analysis (optional)")
|
70 |
|
71 |
# Analyze Data
|
72 |
-
|
73 |
with st.spinner("Analyzing..."):
|
74 |
report_summary, filtered_data = analyze_energy_usage(data, household_id)
|
75 |
|
|
|
69 |
household_id = st.text_input("Enter Household ID for specific analysis (optional)")
|
70 |
|
71 |
# Analyze Data
|
72 |
+
if st.button("Analyze Energy Usage"):
|
73 |
with st.spinner("Analyzing..."):
|
74 |
report_summary, filtered_data = analyze_energy_usage(data, household_id)
|
75 |
|