Prasanna1622 commited on
Commit
05da1e5
·
verified ·
1 Parent(s): 5ac19f7

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +6 -4
app.py CHANGED
@@ -18,11 +18,13 @@ display_dashboard(df)
18
  st.subheader("📋 Pole Table")
19
  st.dataframe(df, use_container_width=True)
20
 
21
- # 3. Charts (Energy + Alert Breakdown)
 
 
 
 
22
  display_charts(df)
23
 
24
 
25
- # 4. Charts
26
- st.subheader("⚙ Energy Generation (Solar vs Wind)")
27
- st.plotly_chart(px.bar(df, x="Name", y=["Solar_Generation__c", "Wind_Generation__c"], barmode="group"))
28
 
 
18
  st.subheader("📋 Pole Table")
19
  st.dataframe(df, use_container_width=True)
20
 
21
+ # 3. Charts
22
+ st.subheader("⚙ Energy Generation (Solar vs Wind)")
23
+ st.plotly_chart(px.bar(df, x="Name", y=["Solar_Generation__c", "Wind_Generation__c"], barmode="group"))
24
+
25
+ # 4. Charts (Energy + Alert Breakdown)
26
  display_charts(df)
27
 
28
 
29
+
 
 
30