Note

Go to the endto download the full example code.

Radian ticks#

Plot with radians from the basic_units mockup example package.

This example shows how the unit class can determine the tick locating,formatting and axis labeling.

This example requiresbasic_units.py

radian demo
frombasic_unitsimportcos,degrees,radiansimportmatplotlib.pyplotaspltimportnumpyasnpx=[val*radiansforvalinnp.arange(0,15,0.01)]fig,axs=plt.subplots(2)axs[0].plot(x,cos(x),xunits=radians)axs[1].plot(x,cos(x),xunits=degrees)fig.tight_layout()plt.show()

Gallery generated by Sphinx-Gallery