Plot.plot({
marks: [
Plot.dot(sheetDataParsed, {x: "Probability of Computerisation",
y: "Some college",
title: "Occupation Name",
fill: d => category.indexOf(categoriesArr[d['Category Label']-1].name)>-1? "steelblue" : "lightgray",
r: d=> Math.sqrt(+d['Employment in Thousands']*400),
fillOpacity: d => category.indexOf(categoriesArr[d['Category Label']-1].name)>-1? 1: 0.2,
})
],
height: 300,
width
})