Hi@akhtar,
You can use scatter function in Pandas. It helps you to plot a Bubble Chart. I have attached one example for your reference.
import numpy as np
x = np.random.rand(40)
y = np.random.rand(40)
z = np.random.rand(40)
colors = np.random.rand(40)
plt.scatter(x, y, s=z*1000,c=colors)
plt.show()
I hope this will help you.