Note
Go to the end to download the full example code or to run this example in your browser via Binder
l. circular_bar_plot
This file shows the usage of circular_bar_plot() function.
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.0', 'numpy': '1.26.1', 'pandas': '2.1.1', 'scipy': '1.11.3'}
basic
data = np.random.random(50, )
_ = circular_bar_plot(data)

with names

sort values

custom color map

custom min and max range

custom label format

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