summary = [
{ Carburant: 'E10', 'Nombre de stations': ds.filter(d => d.e10_prix !== null).length},
{ Carburant: 'Gazole', 'Nombre de stations': ds.filter(d => d.gazole_prix !== null).length},
{ Carburant: 'SP95', 'Nombre de stations': ds.filter(d => d.sp95_prix !== null).length},
{ Carburant: 'SP98', 'Nombre de stations': ds.filter(d => d.sp98_prix !== null).length},
{ Carburant: 'E85', 'Nombre de stations': ds.filter(d => d.e85_prix !== null).length},
{ Carburant: 'GPLC', 'Nombre de stations': ds.filter(d => d.gplc_prix !== null).length},
]