Data_Visualization_with_Python

Graphs, plots and maps made using python.

View on GitHub

Bubble Plot

Dependencies

Introduction

A bubble plot is a variation of the scatter plot that displays three dimensions of data (x, y, z). The datapoints are replaced with bubbles, and the size of the bubble is determined by the third variable ā€˜zā€™, also known as the weight. In maplotlib, we can pass in an array or scalar to the keyword s to plot(), that contains the weight of each point.

The Notebook here contains the code of bubble plots like the one shown below.

Thanks for Reading :)