data_set_1 = d3.csvParse(`indicator, Impact Community,Impact Ecosystem,Impact Captial
Business acumen,3,0,0
Overall well-being,4,0,0
Consciousness,4,0,0
Diverse and meaningful connections,1,0,0
Information transpareny,0,1,0
Exposure,0,1,0
Collaborativeness,0,1,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;
})