Is there a way to add windrose in subplots without adding them one by one. For example if I create a figure with 4 subplots
import matplotlib.pyplot as plt
fig,ax = plt.subplots(2,2)
How can I add a windrose to ax[0,0] For an example data, I have tried the following
wind_dir = np.array([30,45,90,43,180])
wind_sd = np.arange(1,wind_dir.shape[0]+1)
bins_range = np.arange(1,6,1)
fig,ax = plt.subplots(2,2)
wax = WindroseAxes.from_ax(fig =fig, ax = ax[0,0])
wax.bar(wind_dir, wind_sd,normed=True,bins=bins_range)
However, this throws an error AttributeError: Unknown property normed