Public
Edited
Feb 12
Insert cell
Insert cell
import { aq, op } from '@uwdata/arquero'
Insert cell
data1 = await FileAttachment("inventaire-odap-v1.csv").csv({ delimiter: ';' });
Insert cell
colonnes
Type SQL, then Shift-Enter. Ctrl-space for more options.

Insert cell
colonnes = ["nom","Soumis au CRPA ?","Obligation de transparence CRPA remplie"];
Insert cell
extractedData = data.map( d => {
const ligne = {};
colonnes.forEach(col => {
ligne[col] = d[col];
});
return ligne;
});
Insert cell
Insert cell
generateBarChart();
Insert cell
Insert cell
generateBarChart2();
Insert cell

Purpose-built for displays of data

Observable is your go-to platform for exploring data and creating expressive data visualizations. Use reactive JavaScript notebooks for prototyping and a collaborative canvas for visual data exploration and dashboard creation.
Learn more