Towards Dev

A publication for sharing projects, ideas, codes, and new theories.

Follow publication

Bubble Charts in Python (Matplotlib, Seaborn, Plotly)

Okan Yenigün
Towards Dev
Published in
2 min readJun 12, 2022

--

Bubble Chart. Source: Plotly
import plotly.express as px
df = px.data.gapminder().query("year==2002")
df.head()
Dataset.

Matplotlib

import matplotlib.pyplot as pltfig = plt.figure(figsize = (14, 8))
plt.scatter(df["gdpPercap"], df["lifeExp"],
s=df["pop"]*0.00001, alpha=0.5)
plt.show()
Bubble Chart via Matplotlib. Image by the author.

Seaborn

import seaborn as snsfig = plt.figure(figsize = (14, 8))
ax = sns.scatterplot(data=df, x="gdpPercap", y="lifeExp", size="pop", legend=False, sizes=(20, 2000))
ax.set(title='Bubble Chart - Seaborn')
plt.show()
Bubble Chat via Seaborn. Image by the author.

Plotly

import plotly.express as pxfig = px.scatter(df, x="gdpPercap", y="lifeExp",
size="pop", color="continent",
hover_name="country", log_x=True, size_max=60)
fig.show()
Bubble Chart via Plotly. Image by the author.

Read More…

References

--

--

Published in Towards Dev

A publication for sharing projects, ideas, codes, and new theories.

No responses yet

Write a response