Spaces:
GIZ
/
Running on CPU Upgrade

peter2000 commited on
Commit
a48c117
1 Parent(s): 188bcc5

Update appStore/sdg_analysis.py

Browse files
Files changed (1) hide show
  1. appStore/sdg_analysis.py +5 -3
appStore/sdg_analysis.py CHANGED
@@ -178,7 +178,7 @@ def app():
178
 
179
  st.markdown("## 🎈 Anything related to SDGs?")
180
 
181
- c4, c5, c6 = st.columns([5, 7, 1])
182
 
183
  # Add styling
184
  cmGreen = sns.light_palette("green", as_cmap=True)
@@ -196,9 +196,11 @@ def app():
196
 
197
  df = df.format(format_dictionary)
198
 
199
- with c4:
200
  st.pyplot(fig)
201
- with c6:
 
 
202
  st.table(df)
203
 
204
 
 
178
 
179
  st.markdown("## 🎈 Anything related to SDGs?")
180
 
181
+ c4, c5, c6 = st.columns([1, 3, 1])
182
 
183
  # Add styling
184
  cmGreen = sns.light_palette("green", as_cmap=True)
 
196
 
197
  df = df.format(format_dictionary)
198
 
199
+ with c5:
200
  st.pyplot(fig)
201
+
202
+ c7, c8, c9 = st.columns([1, 3, 1])
203
+ with c8:
204
  st.table(df)
205
 
206