data = d3.csvParse(`Month,Impact Space and Community,Impact Ecosystem,Impact Captial
Business acumen,5,0,0
Overall well-being,3,0,0
Increase awareness,5,0,0
Diverse and meaningful connections,4,0,0
Information transpareny,0,3,0
Exposure,0,3.5,0
Collaborativeness,0,4.5,0
Stakeholder involvement,0,4,0
.
Knowledge,0,0,4
Opportunities & Support,0,0,3
`, (d, _, columns) => {
let total = 0;
for (let i = 1; i < columns.length; ++i) total += d[columns[i]] = +d[columns[i]];
d.total = total;
return d;
})