diff --git a/src/gasflux/plotting.py b/src/gasflux/plotting.py index e7f76c5..d24f5b8 100644 --- a/src/gasflux/plotting.py +++ b/src/gasflux/plotting.py @@ -632,14 +632,14 @@ def _windrose_wrapper(df): def _time_series_wrapper(df): - """time_series(df) → original time_series(df, ys=['windspeed'])""" + """time_series(df) → original time_series(df, ys=['windspeed','winddir'])""" return time_series( df, - ys=["windspeed"], + ys=["windspeed", "winddir"], x="timestamp", rolling_average=True, scatter=True, - y_titles="Wind Speed (m/s)", + y_titles=["Wind Speed (m/s)", "Wind Direction (°)"], )