prashant
commited on
Commit
•
ed16157
1
Parent(s):
5203baf
pie chRT FIX
Browse files- appStore/sdg_analysis.py +4 -2
appStore/sdg_analysis.py
CHANGED
@@ -136,12 +136,14 @@ def app():
|
|
136 |
|
137 |
st.markdown("#### Anything related to SDGs? ####")
|
138 |
|
139 |
-
c4, c5, c6 = st.columns([1,
|
140 |
|
141 |
with c5:
|
142 |
st.pyplot(fig)
|
143 |
with c6:
|
144 |
-
|
|
|
|
|
145 |
|
146 |
st.markdown("###### What keywords are present under SDG classified text? ######")
|
147 |
|
|
|
136 |
|
137 |
st.markdown("#### Anything related to SDGs? ####")
|
138 |
|
139 |
+
c4, c5, c6 = st.columns([1,2,2])
|
140 |
|
141 |
with c5:
|
142 |
st.pyplot(fig)
|
143 |
with c6:
|
144 |
+
labeldf = x[['SDG','SDG_name']]
|
145 |
+
labeldf = labeldf.set_index('SDG')
|
146 |
+
st.table(labeldf)
|
147 |
|
148 |
st.markdown("###### What keywords are present under SDG classified text? ######")
|
149 |
|