To test the possibility to explore data sets using observable, this is linked to this notebook
Bar chart
viewof selectedvar = Inputs.checkbox(["Exclusive","Non-exclusive"], {label:"Select some",value: ["Exclusive","Non-exclusive"]})viewof range = Inputs.range([0,5], {label:"Minimum percentage to show",step:0.01,value:0})
LT =FileAttachment("LongTableBar.csv").csv().then(data => {// Convert Percentage values to numbers data.forEach(d => { d.Percentage=parseFloat(d.Percentage); });// Now you can use the processed datareturn data;})