{
let data_accidentsL =
accidentsDuTravailFeuille141.map(
function (d) {
let evolution_parsed = +(d.ratio.replace(',', '.').replace('%', ''))
let thisObj = {}
thisObj['Libelles'] = d.Typologie
thisObj['Evolution'] = evolution_parsed
thisObj['color'] = color2(evolution_parsed)
return thisObj
})
const out = html`<div><p></p></div>`
yield out;
let this_text = (data_accidentsL.map(d=> `${d.Libelles}: ${d.color}`).join('<br>'))
out.querySelector("p").innerHTML=this_text
}