Skip to contents

Create Time of Day Bar Plot

Usage

create_plot_time_of_day(rogue_conditions, date_caption = NULL)

Arguments

rogue_conditions

Data frame with rogue wave conditions

date_caption

Date range caption

Value

plotly object

Examples

if (FALSE) { # \dontrun{
conditions <- data.frame(
  time = as.POSIXct("2024-01-01") + (1:20) * 3600,
  time_of_day = rep(c("Morning", "Afternoon", "Evening", "Night"), 5),
  rogue_ratio = runif(20, 2.0, 2.5)
)
create_plot_time_of_day(conditions)
} # }