# Sample data representing hourly rainfall (in mm) and runoff (in cubic meters per second)
rainfall_runoff_data <- data.frame(
Time = 1:24, # Time in hours
Rainfall = c(0, 5, 12, 8, 20, 35, 50, 60, 80, 70, 50, 30, 15, 8,
5, 2, 1, 0, 0, 0, 0, 0, 0, 0), # Rainfall (mm)
Runoff = c(0, 1, 3, 5, 10, 15, 25, 35, 50, 65, 70, 60, 45, 30, 20,
10, 5, 3, 1, 0, 0, 0, 0, 0) # Runoff (cubic meters per second)
)
# Display the data
head(rainfall_runoff_data)