Skip to contents

Create Monthly Wind Speed Bar Plot

Usage

create_plot_monthly_wind(seasonal_means_wind, date_caption = NULL)

Arguments

seasonal_means_wind

Seasonal means from calculate_seasonal_means

date_caption

Date range caption

Value

plotly object

Examples

if (FALSE) { # \dontrun{
seasonal <- list(
  monthly = data.frame(
    month_name = month.abb,
    mean = runif(12, 5, 15),
    sd = runif(12, 1, 4)
  )
)
create_plot_monthly_wind(seasonal)
} # }