Bubble matrix
<Plot
marginLeft={60}
height={240}
grid
color={{ legend: true }}
x={{ sort: true }}
r={{ range: [0, 40] }}>
<Dot
{...group(
{
data: penguins,
x: 'species',
y: 'island',
stroke: 'sex'
},
{ r: 'count' }
)} />
</Plot>