This function plots the distribution of time-based data.
Usage
PlotTimeDistribution(
data,
DateVariable = "Date",
Data = lifecycle::deprecated()
)Examples
set.seed(1)
df <- data.frame(
Date = as.Date("2024-01-01") + sample(0:364, 200, replace = TRUE)
)
PlotTimeDistribution(df, DateVariable = "Date")
