data = {
let origData = await d3.json("https://cors-anywhere.herokuapp.com/https://raw.githubusercontent.com/lelkaklel/sample_data/master/ppg/sample.json");
let data = [];
origData.forEach(function(x){data.push({date: new Date(x.date), value: +x.ppg})});
return data;
}