Prasanna1622 commited on
Commit
b99384b
·
verified ·
1 Parent(s): d1512e5

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -0
app.py CHANGED
@@ -20,3 +20,8 @@ st.dataframe(df, use_container_width=True)
20
  # 3. Charts (Energy + Alert Breakdown)
21
  display_charts(df)
22
 
 
 
 
 
 
 
20
  # 3. Charts (Energy + Alert Breakdown)
21
  display_charts(df)
22
 
23
+
24
+ # Charts
25
+ st.subheader("⚙ Energy Generation (Solar vs Wind)")
26
+ st.plotly_chart(px.bar(df, x="Name", y=["Solar_Generation__c", "Wind_Generation__c"], barmode="group"))
27
+