-
Notifications
You must be signed in to change notification settings - Fork 10
Open
Description
#import "@preview/cetz:0.4.2": canvas, draw
#import "@preview/cetz-plot:0.1.3": chart
#set page(width: auto, height: auto, margin: .5cm)
#let data2 = (
([15-24], 18.0, 20.1, 23.0, 17.0),
([25-29], 16.3, 17.6, 19.4, 15.3),
([30-34], 14.0, 15.3, 13.9, 18.7),
([35-44], 35.5, 26.5, 29.4, 25.8),
([45-54], 25.0, 20.6, 22.4, 22.0),
([55+], 19.9, 18.2, 19.2, 16.4),
)
#canvas({
draw.set-style(legend: (fill: white), barchart: (bar-width: .8, cluster-gap: 0))
chart.barchart(mode: "clustered",
size: (9, auto),
label-key: 0,
value-key: (..range(1, 5)),
x-tick-step: 2.5,
data2,
labels: ([Low], [Medium], [High], [Very high]),
legend: "inner-north-east",
y-mode: "log"
)
})This is just adding y-mode: "log" to the example in the README. Apparently no data is negative or 0, but typst errors with "value must be strictly positive"
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels