6.8 circular_bar plot
Note
Click here to download the full example code or to run this example in your browser via Binder
6.8 circular_bar plot#
import numpy as np
from easy_mpl import circular_bar_plot
from easy_mpl.utils import version_info
version_info()
{'easy_mpl': '0.21.4', 'matplotlib': '3.8.4', 'numpy': '1.26.4', 'pandas': '1.5.3', 'scipy': '1.13.1'}
basic
data = np.random.random(50, )
_ = circular_bar_plot(data)

_ = circular_bar_plot(data, colorbar=True)

_ = circular_bar_plot(data, color="RdBu", colorbar=True)

_ = circular_bar_plot(data, sort=True, colorbar=True)

with names

sort values

custom color map

custom min and max range

custom label format

Total running time of the script: ( 0 minutes 6.130 seconds)