formatData = (d, index, array) => {
const disease = d["Disease/condition"];
const daly = d["2015 DALY (M)"];
const dalyLog10 = Math.log10(d["2015 DALY (M)"] * 1_000_000);
const funding = d["Actual 2019 $ (M)"];
return { disease, daly, dalyLog10, funding };
}