dataAugmented = [2012, 2013, 2014, 2015, 2016, 2017, 2018, 2019, 2020, 2021].map(year => data.filter(d => d.year === 2021).map(d => ({ ...d, count_requests_received: Math.floor(Math.random() * 5 * d.count_requests_received), year: year }))).flat().concat(data)