Plot.plot({
title: "Filmy Dialogues are too male",
height: 500,
width: width,
y: {reverse: true, axis: null },
color: { range: ["blue", "white", "red"], type: "diverging", pivot: 0.5 },
marks: [
Plot.dot(data2, {x: "gratio2", fill: "gratio2", y:"rRank"}),
Plot.dot(data2,
Plot.pointer ({x: "gratio2", y:"rRank", fill: "pink", r:4})),
Plot.tip(data2,
Plot.pointer({
x: "gRatio2",
y: "rRank",
channels: { movie: "script_id" }
}))
]
})