Skip to content

Commit

Permalink
Update example
Browse files Browse the repository at this point in the history
  • Loading branch information
paulf81 committed Sep 16, 2024
1 parent 04498af commit 99c6df8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions examples/examples_wind_data/001_wind_data_comparisons.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,9 +64,9 @@

# Plot the wind rose with TI
fig, axs = plt.subplots(2, 1, figsize=(6,8), subplot_kw={"polar": True})
wind_ti_rose.plot(ax=axs[0], wind_rose_var="ws",legend_kwargs={"title": "WS"})
wind_ti_rose.plot(ax=axs[0], wind_rose_var="ws",legend_kwargs={"label": "WS"})
axs[0].set_title("Wind Direction and Wind Speed Frequencies")
wind_ti_rose.plot(ax=axs[1], wind_rose_var="ti",legend_kwargs={"title": "TI"})
wind_ti_rose.plot(ax=axs[1], wind_rose_var="ti",legend_kwargs={"label": "TI"})
axs[1].set_title("Wind Direction and Turbulence Intensity Frequencies")
fig.suptitle("WindTIRose Plots")
plt.tight_layout()
Expand Down

0 comments on commit 99c6df8

Please sign in to comment.