# Sample data
data <- data.frame(
Time = rep(1:10, 3),
Value = c(3, 5, 8, 10, 12, 14, 18, 20, 22, 24,
2, 4, 7, 9, 13, 16, 19, 21, 23, 25,
1, 3, 6, 11, 13, 15, 17, 19, 21, 23),
Group = rep(c("Group A", "Group B", "Group C"), each = 10)
)
# View the first few rows of the dataset
head(data)