Plot.plot({
height: 300,
x: {
domain: [0, 10],
label: "Proportion of adjectives in content (%) →"
},
y: {
domain: [0, 10],
label: "Proportion of adverbs in content (%) →"
},
marks: [
Plot.dot(roc, {x: d => d.pos_prop_ADJ*100, y: d => d.pos_prop_ADV*100, fill: d => "steelblue", fillOpacity: 0.5, stroke: "steelblue"}),
Plot.dot(fwc, {x: d => d.pos_prop_ADJ*100, y: d => d.pos_prop_ADV*100, fill: d => "orange", fillOpacity: 0.5, stroke: "orange"}),
Plot.ruleX([0]),
Plot.ruleY([0]),
]
})