data = Array.from({ length: 100 }, (_, comp) => {
const offset = Math.floor(Math.random() * 1000);
const maxTime = Math.floor(Math.random() * 56) + 42;
const baseline = Math.random()
return Array.from({ length: 100 }, (_, sub) => {
return {
competition: comp,
score: Math.random() * baseline,
daynum: Math.floor(Math.random() * maxTime) + offset,
};
})
})