?r
#import "@preview/cetz:0.2.1": canvas, chart, draw
#let data = (
([neutral], 15),
([happy], 68),
([angry], 3),
([sad], 1),
([fear], 0),
([surprise], 5),
([disgust], 1),
([contempt], 7),
)
#figure(
canvas({
chart.barchart(mode: "basic",
size: (7, 4),
value-key: 1,
bar-width: 0.6,
data)
}),
caption: [Sample model output distribution]
) <emotion_dist>
I want the x axis to go from 0 to 100.