join the Figure Friday session on January 24, at noon Eastern Time, to showcase your creation and receive feedback from the community.
“Created by the United Nations Framework Convention on Climate Change, the Green Climate Fund aims to support a paradigm shift in the global response to climate change. It allocates its resources to low-emission and climate-resilient projects and programmes in developing countries.” (UNEP)
In week 3 of Figure Friday, we’ll explore the Climate Fund’s data on these climate-resilient projects and programmes.
The above dataset represents the Countries
tab, but feel free to analyze the other three tabs, such as the Fund Activities tab.
Things to consider:
- can you improve the sample figure below (Choropleth map)?
- would you like to tell a different data story using a different graph?
- can you create a Dash app instead?
Sample figure:
Code for sample figure:
import plotly.express as px
import pandas as pd
df = pd.read_csv('https://raw.githubusercontent.com/plotly/Figure-Friday/refs/heads/main/2025/week-3/ODL-Export-Countries.csv')
fig = px.choropleth(
data_frame=df,
locations='ISO3',
color='FA Financing $',
color_continuous_scale='viridis',
hover_name='Country Name',
title='Funded Activities by Country',
projection='orthographic'
)
fig.update_coloraxes(colorbar_tickprefix='$')
fig.show()
Participation Instructions:
- Create - use the weekly data set to build your own Plotly visualization or Dash app. Or, enhance the sample figure provided in this post, using Plotly or Dash.
- Submit - post your creation to LinkedIn or Twitter with the hashtags
#FigureFriday
and#plotly
by midnight Thursday, your time zone. Please also submit your visualization as a new post in this thread. - Celebrate - join the Figure Friday sessions to showcase your creation and receive feedback from the community.
If you prefer to collaborate with others on Discord, join the Plotly Discord channel.
Data Source:
Thank you to the Green Climate Fund for the data.