Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -1,4 +1,5 @@
|
|
| 1 |
-
|
|
|
|
| 2 |
|
| 3 |
# Page configuration
|
| 4 |
st.set_page_config(page_title="PEC Generative AI Training Survey Results", layout="centered")
|
|
@@ -40,3 +41,5 @@ st.write("This chart represents the responses to the question: **'Were you able
|
|
| 40 |
|
| 41 |
# Display chart
|
| 42 |
st.pyplot(create_bar_chart())
|
|
|
|
|
|
|
|
|
| 1 |
+
import streamlit as st # Ensure Streamlit is imported first
|
| 2 |
+
import matplotlib.pyplot as plt
|
| 3 |
|
| 4 |
# Page configuration
|
| 5 |
st.set_page_config(page_title="PEC Generative AI Training Survey Results", layout="centered")
|
|
|
|
| 41 |
|
| 42 |
# Display chart
|
| 43 |
st.pyplot(create_bar_chart())
|
| 44 |
+
|
| 45 |
+
|