Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -1,4 +1,5 @@
|
|
| 1 |
import streamlit as st
|
|
|
|
| 2 |
import pandas as pd
|
| 3 |
import seaborn as sns
|
| 4 |
import matplotlib.pyplot as plt
|
|
@@ -42,7 +43,8 @@ with col1:
|
|
| 42 |
plt.legend(title='Legend', loc='upper left')
|
| 43 |
st.pyplot(plt)
|
| 44 |
|
| 45 |
-
|
|
|
|
| 46 |
|
| 47 |
with col2:
|
| 48 |
st.markdown('#### ESG Word Clouds')
|
|
|
|
| 1 |
import streamlit as st
|
| 2 |
+
import streamlit.components.v1 as components
|
| 3 |
import pandas as pd
|
| 4 |
import seaborn as sns
|
| 5 |
import matplotlib.pyplot as plt
|
|
|
|
| 43 |
plt.legend(title='Legend', loc='upper left')
|
| 44 |
st.pyplot(plt)
|
| 45 |
|
| 46 |
+
iframe_src="https://fceaf6bb978ab08499.gradio.live"
|
| 47 |
+
components.iframe(iframe_src)
|
| 48 |
|
| 49 |
with col2:
|
| 50 |
st.markdown('#### ESG Word Clouds')
|