You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fails at ax2.bar (Unknown property normed), because ax2 is now no longer a windrose.WindroseAxes but a matplotlib.axes._subplots.AxesSubplot, as from_ax simply returns the given axes if it is not equal to None.
Is it somehow possible to add multiple wind roses to a figure, from existing axes?
The text was updated successfully, but these errors were encountered:
Perhaps I'm missing something, but your example:
works perfectly, until I try to create a
WindroseAxes
from an existing ax. For example:fails at
ax2.bar
(Unknown property normed
), becauseax2
is now no longer awindrose.WindroseAxes
but amatplotlib.axes._subplots.AxesSubplot
, asfrom_ax
simply returns the givenaxes
if it is not equal toNone
.Is it somehow possible to add multiple wind roses to a figure, from existing
axes
?The text was updated successfully, but these errors were encountered: