Generate a Ridgeline Plot of Hourly Data by Month
plot_by_hour_per_month_ridgelines.Rd
Creates a ridgeline plot to show distribution of input/output data by month.
Examples
# Example using a small sample data frame
power_data <- data.frame(
timestamp = c(
as.POSIXct("2000-01-01 01:00:00", tz = "UTC"),
as.POSIXct("2000-01-02 01:00:00", tz = "UTC"),
as.POSIXct("2000-02-01 01:00:00", tz = "UTC"),
as.POSIXct("2000-02-02 01:00:00", tz = "UTC")
),
INPUT = c(1.0, 2.0, 3.0, 4.0),
OUTPUT = c(4.0, 3.0, 2.0, 1.0)
)
plot_by_hour_per_month_ridgelines(power_data)