FileAttachment("Processed-data_Caribbean_new.csv")
.csv()
.then((data)=>{
const groups = data.columns
const yes=0,
no=0,
toSomeExtent=0,
verylittle=0,
significantly=0,
notatall=0,
idontknow=0,
other=0;
for (let index = 0; index < data.length; ++index) {
const curr = data[index]
console.log(curr)
}
return groups
})