Plot.plot({
Title: "Songs with Swear Words",
height: 1000,
width: 1000,
marginLeft: 70,
marginRight: 70,
marginBottom: 70,
marginTop: 70,
style: {fontSize: 24},
marks: [
Plot.density(song, { filter: ({explicit}) => !explicit, x: "danceability", y: "energy", stroke: "explicit" }),
]
})