Skip to content

Commit

Permalink
fix untested func
Browse files Browse the repository at this point in the history
  • Loading branch information
gabrielecalvo committed Jan 13, 2025
1 parent 1ab60fd commit db05cb4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions wind_up/plots/windspeed_drift_plots.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,14 @@

def plot_rolling_windspeed_diff_one_wtg(
*,
ser: pd.DataFrame,
ser: pd.Series,
wtg_name: str,
ws_col: str,
plot_cfg: PlotConfig,
sub_dir: str | None,
) -> None:
plt.figure()
plt.plot(ser["rolling_windspeed_diff"])
plt.plot(ser)
plot_title = f"{wtg_name} rolling {ws_col} diff to reanalysis"
plt.title(plot_title)
plt.xlabel("datetime")
Expand Down

0 comments on commit db05cb4

Please sign in to comment.