It’d be nice to have a shorthand for descending sort such as:
Plot.barY(alphabet, {x: "letter", y: "frequency", sort: {x: "-y"}}).plot()
This would be equivalent to:
Plot.barY(alphabet, {x: "letter", y: "frequency", sort: {x: "y", reverse: true}}).plot()