{
const d1 = allFreqs.filter(d => (d.idx == 131 || d.idx == 132));
return Plot.plot({
width: width,
facet: {
data: d1 ,
y: "idx"
},
x: {label: null, axis: null},
color: {type: 'diverging',
scheme: 'blues',
reverse: false,
domain:[1,9],
legend: true,
pivot: 6,
},
marks: [
Plot.cellX(d1
, {x: d => parseInt(d.key), fill: 'freq'})
],
})
}