data_set_1 = d3.csvParse(`indicator,Impact Space and Community,Impact Ecosystem,Impact Captial
Business acumen,4,0,0
Overall well-being,5,0,0
Consciousness,2,0,0
Diverse and meaningful connections,2,0,0
Information transpareny,0,4,0
Exposure,0,4.5,0
Collaborativeness,0,3,0
Stakeholder involvement,0,2,0
.
Knowledge in social captial,0,0,3
Investment opportunity and support,0,0,2
`, (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;
})