简体   繁体   中英

Inset_axes in polar coordinates

I am using matplotlib.axes.Axes.inset_axes ( https://matplotlib.org/3.1.1/api/_as_gen/matplotlib.axes.Axes.inset_axes.html ) to create an child axe of a an existing parent axe.

How do I set it to polar coordinates? I can not use this: Matplotlib inset polar plot as 'Axes' object has no property 'polar' .

But inset_axes only returns Axes objects and not projections.polar.PolarAxes ..

From the comment of ImportanceOfBeingErnest:

just use mpl_toolkits.axes_grid1.inset_locator.inset_axes() instead, with the parameter axes_class = matplotlib.projections.get_projection_class('polar') .

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM