How to reverse an axis?

I want to reverse the Y axis in a plot created like this:

Plot.plot({
  marks: [
    Plot.dot(diamonds, {
      x: "depth",
      y: "table",
      stroke: "clarity",
      tip: true,
      channels: { Color: "color", Clarity: "clarity" }
    })
  ]
})

https://observablehq.com/d/13694c444fed5265

Set the reverse scale option:

Plot.plot({
  y: { reverse: true },
  // ...